Solving some warning

This commit is contained in:
AnonymusRaccoon
2020-03-12 21:05:46 +01:00
parent bccfcab6c8
commit 9cec01cf28
5 changed files with 8 additions and 6 deletions
+2 -2
View File
@@ -12,12 +12,12 @@ typedef enum display_type
HAPPINESS_DISPLAY,
STUPIDITY_DISPLAY,
SELECT_TILE_DISPLAY
} display_type;
} display_type_enum;
struct game_display
{
gc_component base;
display_type type;
display_type_enum type;
};
const struct game_display game_display;