diff options
| author | Robert Kukla <roolku@rockbox.org> | 2008-03-03 09:28:22 +0000 |
|---|---|---|
| committer | Robert Kukla <roolku@rockbox.org> | 2008-03-03 09:28:22 +0000 |
| commit | 5c5fef006893f6565685917235c1740dc8c6d29e (patch) | |
| tree | 83c9a4f4327ea86d9fb27abc3f1503f2a86d5140 /apps/plugins/bitmaps/native | |
| parent | 0b4299a82fe4245dc939f168d4d14be321979c35 (diff) | |
| download | rockbox-5c5fef006893f6565685917235c1740dc8c6d29e.zip rockbox-5c5fef006893f6565685917235c1740dc8c6d29e.tar.gz rockbox-5c5fef006893f6565685917235c1740dc8c6d29e.tar.bz2 rockbox-5c5fef006893f6565685917235c1740dc8c6d29e.tar.xz | |
m:robe 100: use correct bmp file for chessbox (needs make clean)
also use logical and operator in conditions
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16494 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/bitmaps/native')
| -rw-r--r-- | apps/plugins/bitmaps/native/SOURCES | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES index 40ed6b0..b1393cf 100644 --- a/apps/plugins/bitmaps/native/SOURCES +++ b/apps/plugins/bitmaps/native/SOURCES @@ -119,17 +119,19 @@ bubbles_emblem.112x64x1.bmp #endif /* ChessBox */ -#if (LCD_WIDTH >= 240) && (LCD_HEIGHT >= 240) & (LCD_DEPTH >= 16) +#if (LCD_WIDTH >= 240) && (LCD_HEIGHT >= 240) && (LCD_DEPTH >= 16) chessbox_pieces.240x240x16.bmp -#elif (LCD_WIDTH >= 176) && (LCD_HEIGHT >= 176) & (LCD_DEPTH >= 16) +#elif (LCD_WIDTH >= 176) && (LCD_HEIGHT >= 176) && (LCD_DEPTH >= 16) chessbox_pieces.176x176x16.bmp -#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 128) & (LCD_DEPTH > 1) +#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 128) && (LCD_DEPTH > 1) chessbox_pieces.128x128x2.bmp -#elif (LCD_WIDTH >= 104) && (LCD_HEIGHT >= 104) & (LCD_DEPTH > 1) +#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 128) && (LCD_DEPTH == 1) +chessbox_pieces.128x128x1.bmp +#elif (LCD_WIDTH >= 104) && (LCD_HEIGHT >= 104) && (LCD_DEPTH > 1) chessbox_pieces.104x104x2.bmp -#elif (LCD_WIDTH >= 80) && (LCD_HEIGHT >= 80) & (LCD_DEPTH > 1) +#elif (LCD_WIDTH >= 80) && (LCD_HEIGHT >= 80) && (LCD_DEPTH > 1) chessbox_pieces.80x80x16.bmp -#elif (LCD_WIDTH == 112) && (LCD_HEIGHT == 64) & (LCD_DEPTH == 1) +#elif (LCD_WIDTH == 112) && (LCD_HEIGHT == 64) && (LCD_DEPTH == 1) chessbox_pieces.80x64x1.bmp #elif (LCD_WIDTH >= 64) && (LCD_HEIGHT >= 64) chessbox_pieces.64x64x1.bmp |