From a2ff6a41421426928c5c89aaf307f4b150ecb52d Mon Sep 17 00:00:00 2001 From: Christian Kroll Date: Sat, 31 Mar 2012 14:43:32 +0000 Subject: [PATCH] fixed a typo which caused the simulator build to fail --- games/tetris/highscore.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/games/tetris/highscore.h b/games/tetris/highscore.h index 969c42e..a05f960 100644 --- a/games/tetris/highscore.h +++ b/games/tetris/highscore.h @@ -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