summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/main_menu.c2
-rw-r--r--apps/recorder/icons.c2
-rw-r--r--apps/recorder/icons.h2
3 files changed, 3 insertions, 3 deletions
diff --git a/apps/main_menu.c b/apps/main_menu.c
index 020f5d608c..88599a8705 100644
--- a/apps/main_menu.c
+++ b/apps/main_menu.c
@@ -76,7 +76,7 @@ int show_logo( void )
76#if LCD_WIDTH == 112 || LCD_WIDTH == 128 76#if LCD_WIDTH == 112 || LCD_WIDTH == 128
77 lcd_bitmap(rockbox112x37, 0, 10, 112, 37, false); 77 lcd_bitmap(rockbox112x37, 0, 10, 112, 37, false);
78#endif 78#endif
79#if LCD_WIDTH == 160 79#if LCD_WIDTH >= 160
80 lcd_bitmap(rockbox160x53, 0, 10, 160, 53, false); 80 lcd_bitmap(rockbox160x53, 0, 10, 160, 53, false);
81#endif 81#endif
82 82
diff --git a/apps/recorder/icons.c b/apps/recorder/icons.c
index ee8c69a05c..c77050e322 100644
--- a/apps/recorder/icons.c
+++ b/apps/recorder/icons.c
@@ -138,7 +138,7 @@ const unsigned char rockbox112x37[]={
138 138
139#endif 139#endif
140 140
141#if LCD_WIDTH == 160 141#if LCD_WIDTH >= 160
142/* iRiver LCD width */ 142/* iRiver LCD width */
143const unsigned char rockbox160x53[] = { 143const unsigned char rockbox160x53[] = {
144 0x00, 0x00, 0x00, 0x04, 0x04, 0xff, 0x04, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 144 0x00, 0x00, 0x00, 0x04, 0x04, 0xff, 0x04, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,
diff --git a/apps/recorder/icons.h b/apps/recorder/icons.h
index 48e9a167ee..77a310d053 100644
--- a/apps/recorder/icons.h
+++ b/apps/recorder/icons.h
@@ -70,7 +70,7 @@ extern const unsigned char bitmap_icon_disk[];
70#if LCD_WIDTH == 112 || LCD_WIDTH == 128 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_WIDTH == 128) 70#if LCD_WIDTH == 112 || LCD_WIDTH == 128 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_WIDTH == 128)
71extern const unsigned char rockbox112x37[]; 71extern const unsigned char rockbox112x37[];
72#endif 72#endif
73#if LCD_WIDTH == 160 73#if LCD_WIDTH >= 160
74extern const unsigned char rockbox160x53[]; 74extern const unsigned char rockbox160x53[];
75#endif 75#endif
76 76