fixed a typo which caused the simulator build to fail

This commit is contained in:
Christian Kroll 2012-03-31 14:43:32 +00:00
parent 974a7a89b3
commit a2ff6a4142
1 changed files with 1 additions and 1 deletions

View File

@ -19,7 +19,7 @@ enum tetris_highscore_index_e
#ifdef NDEBUG
typedef uint8_t tetris_highscore_index_t;
#else
typedef enum tetris_highscore_index tetris_highscore_index_t;
typedef enum tetris_highscore_index_e tetris_highscore_index_t;
#endif