320x98 Rockbox logo for larger LCDs (currently only iPod 5G).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8725 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Zakk Roberts 2006-02-18 08:36:25 +00:00
parent 35e05ca504
commit 55c98cf66d
3 changed files with 11 additions and 4 deletions

View file

@ -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

Binary file not shown.

After

Width:  |  Height:  |  Size: 92 KiB

View file

@ -21,8 +21,8 @@
#include <lcd.h>
/*
* 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 */