summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Arver <martin.arver@gmail.com>2006-03-27 14:18:17 +0000
committerMartin Arver <martin.arver@gmail.com>2006-03-27 14:18:17 +0000
commit0468064c28a79a05a0823651dbddcf7959f598fb (patch)
tree6c2f314ef1e837810b01ac370c8d953665be0935
parent99538b73f52d36a6c16d7d6c2de40eed1db29844 (diff)
downloadrockbox-0468064c28a79a05a0823651dbddcf7959f598fb.tar.gz
rockbox-0468064c28a79a05a0823651dbddcf7959f598fb.zip
ChessBox: Add 10x8 pixel pieces for the Archoses from Miguel A. Arévalo (P#4921)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9289 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/plugins/bitmaps/native/SOURCES2
-rw-r--r--apps/plugins/bitmaps/native/chessbox_pieces.80x64x1.bmpbin0 -> 894 bytes
-rw-r--r--apps/plugins/chessbox/chessbox.c4
3 files changed, 6 insertions, 0 deletions
diff --git a/apps/plugins/bitmaps/native/SOURCES b/apps/plugins/bitmaps/native/SOURCES
index 4de697c84b..0718ffab86 100644
--- a/apps/plugins/bitmaps/native/SOURCES
+++ b/apps/plugins/bitmaps/native/SOURCES
@@ -34,6 +34,8 @@ chessbox_pieces.176x176x16.bmp
34chessbox_pieces.128x128x2.bmp 34chessbox_pieces.128x128x2.bmp
35#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 128) 35#elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 128)
36chessbox_pieces.128x128x1.bmp 36chessbox_pieces.128x128x1.bmp
37#elif (LCD_WIDTH == 112) && (LCD_HEIGHT == 64) & (LCD_DEPTH == 1)
38chessbox_pieces.80x64x1.bmp
37#elif (LCD_WIDTH >= 64) && (LCD_HEIGHT >= 64) 39#elif (LCD_WIDTH >= 64) && (LCD_HEIGHT >= 64)
38chessbox_pieces.64x64x1.bmp 40chessbox_pieces.64x64x1.bmp
39#endif 41#endif
diff --git a/apps/plugins/bitmaps/native/chessbox_pieces.80x64x1.bmp b/apps/plugins/bitmaps/native/chessbox_pieces.80x64x1.bmp
new file mode 100644
index 0000000000..86a52d443b
--- /dev/null
+++ b/apps/plugins/bitmaps/native/chessbox_pieces.80x64x1.bmp
Binary files differ
diff --git a/apps/plugins/chessbox/chessbox.c b/apps/plugins/chessbox/chessbox.c
index 38a7c4ebb6..ee83c2b384 100644
--- a/apps/plugins/chessbox/chessbox.c
+++ b/apps/plugins/chessbox/chessbox.c
@@ -130,6 +130,10 @@ PLUGIN_HEADER
130#elif (LCD_HEIGHT >= 128) && (LCD_WIDTH >= 128) 130#elif (LCD_HEIGHT >= 128) && (LCD_WIDTH >= 128)
131#define TILE_WIDTH 16 131#define TILE_WIDTH 16
132#define TILE_HEIGHT 16 132#define TILE_HEIGHT 16
133/* use 10x8 tiles , only for the archoses */
134#elif (LCD_HEIGHT == 64) && (LCD_WIDTH == 112)
135#define TILE_WIDTH 10
136#define TILE_HEIGHT 8
133/* use 8x8 tiles */ 137/* use 8x8 tiles */
134#elif (LCD_HEIGHT >= 64) && (LCD_WIDTH >= 64) 138#elif (LCD_HEIGHT >= 64) && (LCD_WIDTH >= 64)
135#define TILE_WIDTH 8 139#define TILE_WIDTH 8