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

View file

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