From 56973fe40afb7a981166b75f4e4751792e5a827b Mon Sep 17 00:00:00 2001 From: Christian Kroll Date: Sun, 4 Sep 2011 22:24:57 +0000 Subject: [PATCH] moved const modifier to the right of the type (for consistency) --- games/tetris/variant_bastet.c | 2 +- games/tetris/variant_fp.c | 2 +- games/tetris/variant_std.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/games/tetris/variant_bastet.c b/games/tetris/variant_bastet.c index 54df1eb..29f4bd8 100644 --- a/games/tetris/variant_bastet.c +++ b/games/tetris/variant_bastet.c @@ -257,7 +257,7 @@ static void tetris_bastet_evaluatePieces(tetris_bastet_variant_t *pBastet) #ifdef MENU_SUPPORT // Bastet icon, MSB is leftmost pixel -static const uint8_t bastet_icon[8] PROGMEM = +static uint8_t const bastet_icon[8] PROGMEM = { 0x81, 0xc3, 0xff, 0x99, 0xff, 0xff, 0x66, 0x3c }; game_descriptor_t bastet_game_descriptor __attribute__((section(".game_descriptors"))) = diff --git a/games/tetris/variant_fp.c b/games/tetris/variant_fp.c index 6d77d58..08c6ee2 100644 --- a/games/tetris/variant_fp.c +++ b/games/tetris/variant_fp.c @@ -21,7 +21,7 @@ #ifdef MENU_SUPPORT // First Person Tetris icon, MSB is leftmost pixel -static const uint8_t tetrisfp_icon[8] PROGMEM = +static uint8_t const tetrisfp_icon[8] PROGMEM = { 0xee, 0x89, 0xee, 0x88, 0x88, 0x20, 0x2c, 0x6c }; game_descriptor_t tetrisfp_game_descriptor __attribute__((section(".game_descriptors"))) = diff --git a/games/tetris/variant_std.c b/games/tetris/variant_std.c index 76146ae..aff3452 100644 --- a/games/tetris/variant_std.c +++ b/games/tetris/variant_std.c @@ -34,7 +34,7 @@ #ifdef GAME_TETRIS #ifdef MENU_SUPPORT // Tetris icon, MSB is leftmost pixel -static const uint8_t tetris_icon[8] PROGMEM = +static uint8_t const tetris_icon[8] PROGMEM = { 0x0f, 0x0f, 0xc3, 0xdb, 0xdb, 0xc3, 0xf0, 0xf0 }; game_descriptor_t tetris_game_descriptor __attribute__((section(".game_descriptors"))) =