summaryrefslogtreecommitdiff
path: root/apps/plugins/logo.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/logo.c')
-rw-r--r--apps/plugins/logo.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c
index ba3c86c9f2..08e0266a75 100644
--- a/apps/plugins/logo.c
+++ b/apps/plugins/logo.c
@@ -64,7 +64,7 @@ const unsigned char rockbox91x32[] = {
64 0x08, 0x10, 0x20, 0x41, 0x42, 0x42, 0x43, 0x42, 0x41, 0x40, 0x60, 0x50, 0x40, 64 0x08, 0x10, 0x20, 0x41, 0x42, 0x42, 0x43, 0x42, 0x41, 0x40, 0x60, 0x50, 0x40,
65 0x40, 0x40, 0x20, 0x50, 0x28, 0x10, 0x20, 0x40, 0x43, 0x44, 0x5b, 0x64, 0x18, 65 0x40, 0x40, 0x20, 0x50, 0x28, 0x10, 0x20, 0x40, 0x43, 0x44, 0x5b, 0x64, 0x18,
66}; 66};
67#endif /* IRIVER_H100 */ 67#endif /* HAVE_REMOTE_LCD */
68 68
69#if LCD_WIDTH > 112 69#if LCD_WIDTH > 112
70#define LOGO_WIDTH 112 70#define LOGO_WIDTH 112
@@ -169,8 +169,8 @@ const unsigned char rockbox91x32[] = {
169#define LOGO_HEIGHT 7 169#define LOGO_HEIGHT 7
170#define LOGO rockbox16x7 170#define LOGO rockbox16x7
171const unsigned char rockbox16x7[] = { 171const unsigned char rockbox16x7[] = {
172 0x0a, 0x55, 0x7e, 0x18, 0x00, 0xff, 0xff, 0x09, 172 0x47, 0x18, 0xa6, 0xd8, 0x66, 0xde, 0xb7, 0x9b,
173 0xff, 0x76, 0x00, 0xff, 0xff, 0x44, 0x7c, 0x38, 173 0x76, 0xdb, 0x26, 0xdb, 0x66, 0xde,
174}; 174};
175#endif /* !LCD_BITMAP */ 175#endif /* !LCD_BITMAP */
176 176
@@ -240,7 +240,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) {
240#endif 240#endif
241#else 241#else
242 pgfx_clear_display(); 242 pgfx_clear_display();
243 pgfx_bitmap(LOGO, x % 5, y, LOGO_WIDTH, LOGO_HEIGHT, false); 243 pgfx_bitmap(LOGO, x % 5, y, LOGO_WIDTH, LOGO_HEIGHT);
244 cpos = x / 5; 244 cpos = x / 5;
245#endif 245#endif
246 246