summaryrefslogtreecommitdiff
path: root/src/systems/screenspace.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/systems/screenspace.h')
-rw-r--r--src/systems/screenspace.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systems/screenspace.h b/src/systems/screenspace.h
index f513148..5f0c579 100644
--- a/src/systems/screenspace.h
+++ b/src/systems/screenspace.h
@@ -25,7 +25,7 @@ struct draw_circle {
/** @brief Tagged union that represents a UI shape to be drawn. */
typedef struct draw_cmd {
- enum { RECT, CIRCLE } draw_cmd_type;
+ enum { DRAW_RECT, CIRCLE } draw_cmd_type;
union {
struct draw_rect rect;
struct draw_circle circle;