summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorDave Chapman <dave@dchapman.com>2005-12-18 13:04:00 +0000
committerDave Chapman <dave@dchapman.com>2005-12-18 13:04:00 +0000
commit2a7bd9fb7b9698b949ae85e24b17921c807c323c (patch)
treef81fe7b060f1202996d6e5946ba349e5b9861935 /apps/plugins
parent3f9789b45a971418025a23a437a9c9384c61e2f7 (diff)
downloadrockbox-2a7bd9fb7b9698b949ae85e24b17921c807c323c.tar.gz
rockbox-2a7bd9fb7b9698b949ae85e24b17921c807c323c.zip
New target - iPod Video.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8261 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/jewels.c4
-rw-r--r--apps/plugins/sudoku.c2
2 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/jewels.c b/apps/plugins/jewels.c
index 88938dc125..2031a1cc3b 100644
--- a/apps/plugins/jewels.c
+++ b/apps/plugins/jewels.c
@@ -103,7 +103,7 @@
103#define SWAP_TIMER 30 103#define SWAP_TIMER 30
104 104
105/* use 22x22 tiles */ 105/* use 22x22 tiles */
106#if (LCD_HEIGHT == 176) && (LCD_WIDTH == 220) && \ 106#if (LCD_HEIGHT >= 176) && (LCD_WIDTH >= 220) && \
107 (LCD_PIXELFORMAT == RGB565SWAPPED) 107 (LCD_PIXELFORMAT == RGB565SWAPPED)
108/* size of a tile */ 108/* size of a tile */
109#define TILE_WIDTH 22 109#define TILE_WIDTH 22
@@ -616,7 +616,7 @@ static unsigned short jewel[8][484] = {
616}; 616};
617 617
618/* use 22x22 tiles */ 618/* use 22x22 tiles */
619#elif (LCD_HEIGHT == 176) && (LCD_WIDTH == 220) && \ 619#elif (LCD_HEIGHT >= 176) && (LCD_WIDTH >= 220) && \
620 (LCD_PIXELFORMAT == RGB565) 620 (LCD_PIXELFORMAT == RGB565)
621/* size of a tile */ 621/* size of a tile */
622#define TILE_WIDTH 22 622#define TILE_WIDTH 22
diff --git a/apps/plugins/sudoku.c b/apps/plugins/sudoku.c
index 9d02ff162a..586b94b721 100644
--- a/apps/plugins/sudoku.c
+++ b/apps/plugins/sudoku.c
@@ -381,7 +381,7 @@ static unsigned char num_inverse[10][8]= {
381 /* Numeral 9 */ 381 /* Numeral 9 */
382 {0x3f,0x3f,0x1b,0x15,0x15,0x23,0x3f,0x3f}, 382 {0x3f,0x3f,0x1b,0x15,0x15,0x23,0x3f,0x3f},
383}; 383};
384#elif (LCD_HEIGHT==176) && (LCD_WIDTH==220) 384#elif (LCD_HEIGHT>=176) && (LCD_WIDTH>=220)
385/* iriver h300 */ 385/* iriver h300 */
386 386
387/* Internal dimensions of a cell */ 387/* Internal dimensions of a cell */