From 0468064c28a79a05a0823651dbddcf7959f598fb Mon Sep 17 00:00:00 2001 From: Martin Arver Date: Mon, 27 Mar 2006 14:18:17 +0000 Subject: ChessBox: Add 10x8 pixel pieces for the Archoses from Miguel A. Arévalo (P#4921) 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/chessbox/chessbox.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/plugins/chessbox') 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 -- cgit v1.2.3