From 0468064c28a79a05a0823651dbddcf7959f598fb Mon Sep 17 00:00:00 2001 From: Martin Arver Date: Mon, 27 Mar 2006 14:18:17 +0000 Subject: [PATCH] =?UTF-8?q?ChessBox:=20Add=2010x8=20pixel=20pieces=20for?= =?UTF-8?q?=20the=20Archoses=20from=20Miguel=20A.=20Ar=C3=A9valo=20(P#4921?= =?UTF-8?q?)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9289 a1c6a512-1295-4272-9138-f99709370657 --- apps/plugins/bitmaps/native/SOURCES | 2 ++ .../bitmaps/native/chessbox_pieces.80x64x1.bmp | Bin 0 -> 894 bytes apps/plugins/chessbox/chessbox.c | 4 ++++ 3 files changed, 6 insertions(+) create mode 100644 apps/plugins/bitmaps/native/chessbox_pieces.80x64x1.bmp 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 chessbox_pieces.128x128x2.bmp #elif (LCD_WIDTH >= 128) && (LCD_HEIGHT >= 128) chessbox_pieces.128x128x1.bmp +#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 #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 0000000000000000000000000000000000000000..86a52d443b1a1fc86f966db0de40ef9c9461515d GIT binary patch literal 894 zcmZ{iy-LJD6os$a$-=@ufIro0AzRp3=^&O0;(J(G*tt_$Sot1evE>#{XJfHgh?PIJ z2n#+yJYOc)9fCRG%biT-+;amtJh@u2TKl?hiB&NZOS(|d`!8+6vYr7|RaMtD-FL-t z%p7Rl6R1jNpCXBykonOXc!%)gxriCOZU0j;n}iI#Ng-H)AM)OD8xCk$bV2J|5mj9O?e)AAo9x@hI*zK;*5Vk-@qI%g0=hm(QHo~iBqv5)-8)Ob1@UwB8ql? z-^@nhQjA4Ae;&*p#Z=sjckz)H`OG?K@c%}Swa8~y$NwAl0pWML{NKq8{`1S;DbMMu EzZ?L)82|tP literal 0 HcmV?d00001 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 #elif (LCD_HEIGHT >= 128) && (LCD_WIDTH >= 128) #define TILE_WIDTH 16 #define TILE_HEIGHT 16 +/* use 10x8 tiles , only for the archoses */ +#elif (LCD_HEIGHT == 64) && (LCD_WIDTH == 112) +#define TILE_WIDTH 10 +#define TILE_HEIGHT 8 /* use 8x8 tiles */ #elif (LCD_HEIGHT >= 64) && (LCD_WIDTH >= 64) #define TILE_WIDTH 8