summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
Diffstat (limited to 'apps')
-rw-r--r--apps/bitmaps/native/SOURCES2
-rw-r--r--apps/bitmaps/native/rockboxlogo.320x98x16.bmpbin0 -> 94136 bytes
-rw-r--r--apps/recorder/icons.h13
3 files changed, 11 insertions, 4 deletions
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
9rockboxlogo.160x50x16.bmp 9rockboxlogo.160x50x16.bmp
10#elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16) 10#elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16)
11rockboxlogo.176x54x16.bmp 11rockboxlogo.176x54x16.bmp
12#elif (LCD_WIDTH == 320) && (LCD_DEPTH == 16)
13rockboxlogo.320x98x16.bmp
12#elif (LCD_WIDTH >= 220) && (LCD_DEPTH == 16) 14#elif (LCD_WIDTH >= 220) && (LCD_DEPTH == 16)
13rockboxlogo.220x68x16.bmp 15rockboxlogo.220x68x16.bmp
14#endif 16#endif
diff --git a/apps/bitmaps/native/rockboxlogo.320x98x16.bmp b/apps/bitmaps/native/rockboxlogo.320x98x16.bmp
new file mode 100644
index 0000000000..26dcac89c3
--- /dev/null
+++ b/apps/bitmaps/native/rockboxlogo.320x98x16.bmp
Binary files 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 @@
21 21
22#include <lcd.h> 22#include <lcd.h>
23 23
24/* 24/*
25 * Icons of size 6x8 pixels 25 * Icons of size 6x8 pixels
26 */ 26 */
27 27
28#ifdef HAVE_LCD_BITMAP 28#ifdef HAVE_LCD_BITMAP
@@ -100,8 +100,13 @@ extern const fb_data rockboxlogo[];
100#define ROCKBOXLOGO_WIDTH 176 100#define ROCKBOXLOGO_WIDTH 176
101#define ROCKBOXLOGO_HEIGHT 54 101#define ROCKBOXLOGO_HEIGHT 54
102 102
103#elif (LCD_WIDTH == 320) && (LCD_DEPTH == 16)
104/* iPod Video */
105#define ROCKBOXLOGO_WIDTH 320
106#define ROCKBOXLOGO_HEIGHT 98
107
103#elif (LCD_WIDTH >= 220) && (LCD_DEPTH == 16) 108#elif (LCD_WIDTH >= 220) && (LCD_DEPTH == 16)
104/* iriver H3x0, iPod Color/Photo and Video */ 109/* iriver H3x0, iPod Color/Photo */
105#define ROCKBOXLOGO_WIDTH 220 110#define ROCKBOXLOGO_WIDTH 220
106#define ROCKBOXLOGO_HEIGHT 68 111#define ROCKBOXLOGO_HEIGHT 68
107#endif 112#endif
@@ -145,7 +150,7 @@ extern void statusbar_icon_lock(void);
145extern void statusbar_time(int hour, int minute); 150extern void statusbar_time(int hour, int minute);
146#endif 151#endif
147#if CONFIG_LED == LED_VIRTUAL 152#if CONFIG_LED == LED_VIRTUAL
148extern void statusbar_led(void); 153extern void statusbar_led(void);
149#endif 154#endif
150 155
151#endif /* End HAVE_LCD_BITMAP */ 156#endif /* End HAVE_LCD_BITMAP */