diff options
author | Thomas Martitz <kugel@rockbox.org> | 2014-06-15 00:21:20 +0200 |
---|---|---|
committer | Thomas Martitz <kugel@rockbox.org> | 2014-06-21 00:13:58 +0200 |
commit | e49dcbf190b12f8830d7ce057d59d22db8921790 (patch) | |
tree | d5a2cb4f6ff60d277538cc02b935afaf5e383c28 /apps/bitmaps | |
parent | 0267fafc5fd4440ee3d08f22db8c11a2991952da (diff) |
bitmaps: Use *x16.bmp also for upcoming 24bit targets (they are actually 24bit BMPs).
Change-Id: I5c7d16ad41e43c26a9ac3e01c52c3ca34a6b7495
Diffstat (limited to 'apps/bitmaps')
-rw-r--r-- | apps/bitmaps/native/SOURCES | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/apps/bitmaps/native/SOURCES b/apps/bitmaps/native/SOURCES index 9479f3e933..88a571bdbd 100644 --- a/apps/bitmaps/native/SOURCES +++ b/apps/bitmaps/native/SOURCES @@ -9,33 +9,33 @@ rockboxlogo.128x42x1.bmp #else rockboxlogo.112x30x1.bmp #endif -#elif (LCD_WIDTH == 96) && (LCD_DEPTH == 16) +#elif (LCD_WIDTH == 96) && (LCD_DEPTH >= 16) rockboxlogo.96x30x16.bmp #elif (LCD_WIDTH == 128) && (LCD_DEPTH == 2) rockboxlogo.128x42x2.bmp #elif (LCD_WIDTH == 128) && (LCD_DEPTH == 16) rockboxlogo.128x40x16.bmp -#elif (LCD_WIDTH == 132) && (LCD_DEPTH == 16) +#elif (LCD_WIDTH == 132) && (LCD_DEPTH >= 16) rockboxlogo.132x40x16.bmp -#elif (LCD_WIDTH == 138) && (LCD_DEPTH == 2) +#elif (LCD_WIDTH == 138) && (LCD_DEPTH >= 2) rockboxlogo.138x46x2.bmp #elif (LCD_WIDTH == 160) && (LCD_DEPTH == 2) rockboxlogo.160x53x2.bmp #elif (LCD_WIDTH == 320) && (LCD_DEPTH == 2) rockboxlogo.160x53x2.bmp -#elif (LCD_WIDTH == 160) && (LCD_DEPTH == 16) +#elif (LCD_WIDTH == 160) && (LCD_DEPTH >= 16) rockboxlogo.160x50x16.bmp -#elif (LCD_WIDTH == 176) && (LCD_DEPTH == 16) +#elif (LCD_WIDTH == 176) && (LCD_DEPTH >= 16) rockboxlogo.176x54x16.bmp -#elif (LCD_WIDTH == 220) && (LCD_DEPTH == 16) +#elif (LCD_WIDTH == 220) && (LCD_DEPTH >= 16) rockboxlogo.220x68x16.bmp -#elif (LCD_WIDTH == 240) && (LCD_DEPTH == 16) +#elif (LCD_WIDTH == 240) && (LCD_DEPTH >= 16) rockboxlogo.240x74x16.bmp -#elif (LCD_WIDTH >= 320) && (LCD_WIDTH < 480) && (LCD_DEPTH == 16) +#elif (LCD_WIDTH >= 320) && (LCD_WIDTH < 480) && (LCD_DEPTH >= 16) rockboxlogo.320x98x16.bmp -#elif (LCD_WIDTH >= 480) && (LCD_WIDTH < 640) && (LCD_DEPTH == 16) +#elif (LCD_WIDTH >= 480) && (LCD_WIDTH < 640) && (LCD_DEPTH >= 16) rockboxlogo.480x149x16.bmp -#elif (LCD_WIDTH >= 640) && (LCD_DEPTH == 16) +#elif (LCD_WIDTH >= 640) && (LCD_DEPTH >= 16) rockboxlogo.640x198x16.bmp #endif |