diff options
| author | Antoine Cellerier <dionoea@videolan.org> | 2007-06-28 20:45:00 +0000 |
|---|---|---|
| committer | Antoine Cellerier <dionoea@videolan.org> | 2007-06-28 20:45:00 +0000 |
| commit | f91d06de7bf724e8e0aa580c18efa3eb345f88f9 (patch) | |
| tree | 29c6446a4556cd074dbee3c3d97cdaae207ff228 /apps/plugins/bitmaps | |
| parent | 7a1108227b67fb62f3d3447d795447b5b631ed32 (diff) | |
| download | rockbox-f91d06de7bf724e8e0aa580c18efa3eb345f88f9.zip rockbox-f91d06de7bf724e8e0aa580c18efa3eb345f88f9.tar.gz rockbox-f91d06de7bf724e8e0aa580c18efa3eb345f88f9.tar.bz2 rockbox-f91d06de7bf724e8e0aa580c18efa3eb345f88f9.tar.xz | |
Apply FS #6702: More Sokoban Improvements.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13731 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bitmaps')
| -rw-r--r-- | apps/plugins/bitmaps/native/SOURCES | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES index 90a635e..00a6e3a 100644 --- a/apps/plugins/bitmaps/native/SOURCES +++ b/apps/plugins/bitmaps/native/SOURCES @@ -331,11 +331,13 @@ sokoban_tiles.14x14.bmp #elif (LCD_HEIGHT >= 144) && (LCD_WIDTH >= 212) || \ (LCD_HEIGHT >= 169) && (LCD_WIDTH >= 180-4) sokoban_tiles.9x9.bmp -#else -/* LCD_HEIGHT >= 96~121 && LCD_WIDTH >= 152~120 */ +#elif (LCD_HEIGHT >= 96 && LCD_WIDTH >= 152) || \ + (LCD_HEIGHT >= 121 && LCD_WIDTH >= 120) sokoban_tiles.6x6.bmp #endif -#elif LCD_DEPTH >= 2 +#elif LCD_DEPTH >= 2 && \ + ((LCD_HEIGHT >= 96 && LCD_WIDTH >= 152) || \ + (LCD_HEIGHT >= 121 && LCD_WIDTH >= 120)) sokoban_tiles.6x6x2.bmp #endif |