summaryrefslogtreecommitdiff
path: root/apps
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
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')
-rw-r--r--apps/SOURCES6
-rw-r--r--apps/plugins/jewels.c4
-rw-r--r--apps/plugins/sudoku.c2
-rw-r--r--apps/recorder/icons.h2
4 files changed, 7 insertions, 7 deletions
diff --git a/apps/SOURCES b/apps/SOURCES
index c811dd2757..cf17bbc27c 100644
--- a/apps/SOURCES
+++ b/apps/SOURCES
@@ -56,11 +56,11 @@ recorder/icons.c
56recorder/keyboard.c 56recorder/keyboard.c
57recorder/peakmeter.c 57recorder/peakmeter.c
58recorder/widgets.c 58recorder/widgets.c
59#ifdef IRIVER_H300_SERIES 59#if defined(IRIVER_H300_SERIES) || defined(APPLE_IPODVIDEO)
60recorder/logo-h300.c 60recorder/logo-h300.c
61#elif APPLE_IPODCOLOR 61#elif defined(APPLE_IPODCOLOR)
62recorder/logo-ipod.c 62recorder/logo-ipod.c
63#elif APPLE_IPODNANO 63#elif defined(APPLE_IPODNANO)
64recorder/logo-nano.c 64recorder/logo-nano.c
65#endif 65#endif
66#endif 66#endif
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 */
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index 72dc70a95c..98f86cbdac 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -81,7 +81,7 @@ extern const unsigned char bitmap_icon_disk[];
81#if LCD_WIDTH == 112 || LCD_WIDTH == 128 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_WIDTH == 128) 81#if LCD_WIDTH == 112 || LCD_WIDTH == 128 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_WIDTH == 128)
82extern const unsigned char rockbox112x37[]; 82extern const unsigned char rockbox112x37[];
83#endif 83#endif
84#if defined(IRIVER_H300_SERIES) || defined(APPLE_IPODCOLOR) 84#if defined(IRIVER_H300_SERIES) || defined(APPLE_IPODCOLOR) || defined(APPLE_IPODVIDEO)
85#define ROCKBOXLOGO_WIDTH 220 85#define ROCKBOXLOGO_WIDTH 220
86#define ROCKBOXLOGO_HEIGHT 68 86#define ROCKBOXLOGO_HEIGHT 68
87extern const unsigned short rockboxlogo[]; 87extern const unsigned short rockboxlogo[];