diff options
| author | Zakk Roberts <midk@rockbox.org> | 2006-02-18 08:36:25 +0000 |
|---|---|---|
| committer | Zakk Roberts <midk@rockbox.org> | 2006-02-18 08:36:25 +0000 |
| commit | 55c98cf66da6d1d12000815037682e2062abea6e (patch) | |
| tree | 49adc2e63d3069f42a4e7afe33be37838e5ed4cd | |
| parent | 35e05ca504c1423bca2f42db284bf26bdeeb1a77 (diff) | |
| download | rockbox-55c98cf66da6d1d12000815037682e2062abea6e.zip rockbox-55c98cf66da6d1d12000815037682e2062abea6e.tar.gz rockbox-55c98cf66da6d1d12000815037682e2062abea6e.tar.bz2 rockbox-55c98cf66da6d1d12000815037682e2062abea6e.tar.xz | |
320x98 Rockbox logo for larger LCDs (currently only iPod 5G).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8725 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/bitmaps/native/SOURCES | 2 | ||||
| -rw-r--r-- | apps/bitmaps/native/rockboxlogo.320x98x16.bmp | bin | 0 -> 94136 bytes | |||
| -rw-r--r-- | apps/recorder/icons.h | 13 |
3 files changed, 11 insertions, 4 deletions
diff --git a/apps/bitmaps/native/SOURCES b/apps/bitmaps/native/SOURCES index b4ac2e8..4b2ed5a 100644 --- a/apps/bitmaps/native/SOURCES +++ b/apps/bitmaps/native/SOURCES @@ -9,6 +9,8 @@ rockboxlogo.160x53x2.bmp rockboxlogo.160x50x16.bmp #elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16) rockboxlogo.176x54x16.bmp +#elif (LCD_WIDTH == 320) && (LCD_DEPTH == 16) +rockboxlogo.320x98x16.bmp #elif (LCD_WIDTH >= 220) && (LCD_DEPTH == 16) rockboxlogo.220x68x16.bmp #endif diff --git a/apps/bitmaps/native/rockboxlogo.320x98x16.bmp b/apps/bitmaps/native/rockboxlogo.320x98x16.bmp Binary files differnew file mode 100644 index 0000000..26dcac8 --- /dev/null +++ b/apps/bitmaps/native/rockboxlogo.320x98x16.bmp diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h index 258d93b4..14e84cd 100644 --- a/apps/recorder/icons.h +++ b/apps/recorder/icons.h @@ -21,8 +21,8 @@ #include <lcd.h> -/* - * Icons of size 6x8 pixels +/* + * Icons of size 6x8 pixels */ #ifdef HAVE_LCD_BITMAP @@ -100,8 +100,13 @@ extern const fb_data rockboxlogo[]; #define ROCKBOXLOGO_WIDTH 176 #define ROCKBOXLOGO_HEIGHT 54 +#elif (LCD_WIDTH == 320) && (LCD_DEPTH == 16) +/* iPod Video */ +#define ROCKBOXLOGO_WIDTH 320 +#define ROCKBOXLOGO_HEIGHT 98 + #elif (LCD_WIDTH >= 220) && (LCD_DEPTH == 16) -/* iriver H3x0, iPod Color/Photo and Video */ +/* iriver H3x0, iPod Color/Photo */ #define ROCKBOXLOGO_WIDTH 220 #define ROCKBOXLOGO_HEIGHT 68 #endif @@ -145,7 +150,7 @@ extern void statusbar_icon_lock(void); extern void statusbar_time(int hour, int minute); #endif #if CONFIG_LED == LED_VIRTUAL -extern void statusbar_led(void); +extern void statusbar_led(void); #endif #endif /* End HAVE_LCD_BITMAP */ |