diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2005-06-30 21:07:00 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2005-06-30 21:07:00 +0000 |
| commit | 93867305d514b90bec2d5d7541297aef6a157efa (patch) | |
| tree | e3e5ecfb84c337a227093122f7ddcf085d6c9f32 /apps/plugins/logo.c | |
| parent | 05c3cc297814543d68065389b08ef2123020b0b9 (diff) | |
| download | rockbox-93867305d514b90bec2d5d7541297aef6a157efa.zip rockbox-93867305d514b90bec2d5d7541297aef6a157efa.tar.gz rockbox-93867305d514b90bec2d5d7541297aef6a157efa.tar.bz2 rockbox-93867305d514b90bec2d5d7541297aef6a157efa.tar.xz | |
Player graphics library extended and converted to new api. Please note that the player gfx bitmap format chas changed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6956 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/logo.c')
| -rw-r--r-- | apps/plugins/logo.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/logo.c b/apps/plugins/logo.c index ba3c86c..08e0266 100644 --- a/apps/plugins/logo.c +++ b/apps/plugins/logo.c @@ -64,7 +64,7 @@ const unsigned char rockbox91x32[] = { 0x08, 0x10, 0x20, 0x41, 0x42, 0x42, 0x43, 0x42, 0x41, 0x40, 0x60, 0x50, 0x40, 0x40, 0x40, 0x20, 0x50, 0x28, 0x10, 0x20, 0x40, 0x43, 0x44, 0x5b, 0x64, 0x18, }; -#endif /* IRIVER_H100 */ +#endif /* HAVE_REMOTE_LCD */ #if LCD_WIDTH > 112 #define LOGO_WIDTH 112 @@ -169,8 +169,8 @@ const unsigned char rockbox91x32[] = { #define LOGO_HEIGHT 7 #define LOGO rockbox16x7 const unsigned char rockbox16x7[] = { - 0x0a, 0x55, 0x7e, 0x18, 0x00, 0xff, 0xff, 0x09, - 0xff, 0x76, 0x00, 0xff, 0xff, 0x44, 0x7c, 0x38, + 0x47, 0x18, 0xa6, 0xd8, 0x66, 0xde, 0xb7, 0x9b, + 0x76, 0xdb, 0x26, 0xdb, 0x66, 0xde, }; #endif /* !LCD_BITMAP */ @@ -240,7 +240,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { #endif #else pgfx_clear_display(); - pgfx_bitmap(LOGO, x % 5, y, LOGO_WIDTH, LOGO_HEIGHT, false); + pgfx_bitmap(LOGO, x % 5, y, LOGO_WIDTH, LOGO_HEIGHT); cpos = x / 5; #endif |