From 974a7a89b3307a71ed25e5532946387bb1edd450 Mon Sep 17 00:00:00 2001 From: Christian Kroll Date: Sat, 24 Mar 2012 00:44:16 +0000 Subject: [PATCH] Accidentally enforced new table layout instead of the old one. Should be compatible with established Borg EEPROM layouts, now. --- 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 8ec035e..969c42e 100644 --- a/games/tetris/highscore.h +++ b/games/tetris/highscore.h @@ -28,8 +28,8 @@ enum tetris_highscore_index_e */ typedef struct tetris_highscore_table_s { - uint16_t nHighScoreName[TETRIS_HISCORE_END]; /**< champions' initials */ uint16_t nHighScore[TETRIS_HISCORE_END]; /**< actual high scores */ + uint16_t nHighScoreName[TETRIS_HISCORE_END]; /**< champions' initials */ } tetris_highscore_table_t;