summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorAntoine Cellerier <dionoea@videolan.org>2006-06-10 22:53:47 +0000
committerAntoine Cellerier <dionoea@videolan.org>2006-06-10 22:53:47 +0000
commit2c450976fdbe62ba12d388c308815ee1edb16539 (patch)
tree1245f98254bc21be374ffeb092f9988b010e1731 /apps/plugins
parent101638f831fef1136382d4196018a9de0a555d40 (diff)
downloadrockbox-2c450976fdbe62ba12d388c308815ee1edb16539.zip
rockbox-2c450976fdbe62ba12d388c308815ee1edb16539.tar.gz
rockbox-2c450976fdbe62ba12d388c308815ee1edb16539.tar.bz2
rockbox-2c450976fdbe62ba12d388c308815ee1edb16539.tar.xz
Remove unneeded defines.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10107 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/sokoban.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/apps/plugins/sokoban.c b/apps/plugins/sokoban.c
index b450e39..55f94b7 100644
--- a/apps/plugins/sokoban.c
+++ b/apps/plugins/sokoban.c
@@ -103,12 +103,6 @@ extern const fb_data sokoban_tiles[];
#endif
#ifdef HAVE_LCD_COLOR
-#define WALL_COLOR LCD_RGBPACK(16,20,180) /* Color of the walls */
-#define FREE_TARGET_COLOR LCD_RGBPACK(251,158,25) /* Color of a 'target' without a block on top */
-#define USED_TARGET_COLOR LCD_RGBPACK(255,255,255) /* Color of a 'target' with a block on top */
-#define FREE_BLOCK_COLOR LCD_RGBPACK(22,130,53) /* Color of a block when it's not on a 'target' */
-#define USED_BLOCK_COLOR LCD_RGBPACK(22,130,53) /* Color of a block when it is on a 'target' */
-#define CHAR_COLOR LCD_BLACK /* Color of the 'character' */
#define BG_COLOR LCD_RGBPACK(181,199,231) /* Background color. Default Rockbox light blue. */
#elif LCD_DEPTH > 1