diff --git a/apps/bitmaps/native/SOURCES b/apps/bitmaps/native/SOURCES index b4ac2e8cb2..4b2ed5a6bb 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 new file mode 100644 index 0000000000..26dcac89c3 Binary files /dev/null and b/apps/bitmaps/native/rockboxlogo.320x98x16.bmp differ diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h index 258d93b444..14e84cd64f 100644 --- a/apps/recorder/icons.h +++ b/apps/recorder/icons.h @@ -21,8 +21,8 @@ #include -/* - * 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 */