use the 160 pixels wide logo for wider LCDs too (for now at least)

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6720 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2005-06-15 11:48:50 +00:00
parent 6b60f9ad53
commit a7de2e28d3
3 changed files with 3 additions and 3 deletions

View file

@ -76,7 +76,7 @@ int show_logo( void )
#if LCD_WIDTH == 112 || LCD_WIDTH == 128 #if LCD_WIDTH == 112 || LCD_WIDTH == 128
lcd_bitmap(rockbox112x37, 0, 10, 112, 37, false); lcd_bitmap(rockbox112x37, 0, 10, 112, 37, false);
#endif #endif
#if LCD_WIDTH == 160 #if LCD_WIDTH >= 160
lcd_bitmap(rockbox160x53, 0, 10, 160, 53, false); lcd_bitmap(rockbox160x53, 0, 10, 160, 53, false);
#endif #endif

View file

@ -138,7 +138,7 @@ const unsigned char rockbox112x37[]={
#endif #endif
#if LCD_WIDTH == 160 #if LCD_WIDTH >= 160
/* iRiver LCD width */ /* iRiver LCD width */
const unsigned char rockbox160x53[] = { const unsigned char rockbox160x53[] = {
0x00, 0x00, 0x00, 0x04, 0x04, 0xff, 0x04, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0x00, 0x00, 0x00, 0x04, 0x04, 0xff, 0x04, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4, 0xf4,

View file

@ -70,7 +70,7 @@ extern const unsigned char bitmap_icon_disk[];
#if LCD_WIDTH == 112 || LCD_WIDTH == 128 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_WIDTH == 128) #if LCD_WIDTH == 112 || LCD_WIDTH == 128 || (defined(HAVE_REMOTE_LCD) && LCD_REMOTE_WIDTH == 128)
extern const unsigned char rockbox112x37[]; extern const unsigned char rockbox112x37[];
#endif #endif
#if LCD_WIDTH == 160 #if LCD_WIDTH >= 160
extern const unsigned char rockbox160x53[]; extern const unsigned char rockbox160x53[];
#endif #endif