diff options
| author | Marianne Arnold <pixelma@rockbox.org> | 2006-11-20 10:56:22 +0000 |
|---|---|---|
| committer | Marianne Arnold <pixelma@rockbox.org> | 2006-11-20 10:56:22 +0000 |
| commit | 99975e9fb580252e04e5b240e0909be0f210ee7e (patch) | |
| tree | 3d14ac9b585c983ac002671445a12b44b8bb8a5b /apps/bitmaps/native/SOURCES | |
| parent | 0b2ac4b427a3013c0e4f20560e78c0216ed4d803 (diff) | |
| download | rockbox-99975e9fb580252e04e5b240e0909be0f210ee7e.zip rockbox-99975e9fb580252e04e5b240e0909be0f210ee7e.tar.gz rockbox-99975e9fb580252e04e5b240e0909be0f210ee7e.tar.bz2 rockbox-99975e9fb580252e04e5b240e0909be0f210ee7e.tar.xz | |
new usb logos for all screens, utilising lcd_bitmap_transparent() on colour displays. It saves some bytes on Archos as a nice side effect
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11560 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/bitmaps/native/SOURCES')
| -rw-r--r-- | apps/bitmaps/native/SOURCES | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/apps/bitmaps/native/SOURCES b/apps/bitmaps/native/SOURCES index ffb3f72..027f33e 100644 --- a/apps/bitmaps/native/SOURCES +++ b/apps/bitmaps/native/SOURCES @@ -21,6 +21,21 @@ rockboxlogo.240x74x16.bmp rockboxlogo.320x98x16.bmp #endif -usblogo.100x32x1.bmp +/* USB logo */ +#ifdef HAVE_LCD_COLOR +#if LCD_WIDTH > 176 +usblogo.176x48x16.bmp +#elif LCD_WIDTH >= 128 +usblogo.128x37x16.bmp +#endif +#elif LCD_DEPTH > 1 /* greyscale */ +usblogo.128x33x2.bmp +#else /* monochrome */ +#if LCD_WIDTH == 112 +usblogo.100x20x1.bmp +#else +usblogo.104x27x1.bmp +#endif +#endif #endif /* HAVE_LCD_BITMAP */ |