From d158da2f00551ae4dddbca728bda4c0066f8e83a Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Thu, 10 Aug 2006 11:14:26 +0000 Subject: Sudoku: Slightly smaller bitmaps for iPod Video and Gigabeat to make the board not stick to the LCD border, by Marianne Arnold. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10509 a1c6a512-1295-4272-9138-f99709370657 --- .../bitmaps/native/sudoku_inverse.320x240x16.bmp | Bin 8078 -> 6838 bytes .../bitmaps/native/sudoku_normal.320x240x16.bmp | Bin 8078 -> 6838 bytes .../bitmaps/native/sudoku_start.320x240x16.bmp | Bin 8078 -> 6838 bytes apps/plugins/sudoku/sudoku.c | 12 ++++++------ 4 files changed, 6 insertions(+), 6 deletions(-) (limited to 'apps/plugins') diff --git a/apps/plugins/bitmaps/native/sudoku_inverse.320x240x16.bmp b/apps/plugins/bitmaps/native/sudoku_inverse.320x240x16.bmp index 2fdf3657ab..faf0616280 100755 Binary files a/apps/plugins/bitmaps/native/sudoku_inverse.320x240x16.bmp and b/apps/plugins/bitmaps/native/sudoku_inverse.320x240x16.bmp differ diff --git a/apps/plugins/bitmaps/native/sudoku_normal.320x240x16.bmp b/apps/plugins/bitmaps/native/sudoku_normal.320x240x16.bmp index 6f888cb86c..8cd9e29d96 100755 Binary files a/apps/plugins/bitmaps/native/sudoku_normal.320x240x16.bmp and b/apps/plugins/bitmaps/native/sudoku_normal.320x240x16.bmp differ diff --git a/apps/plugins/bitmaps/native/sudoku_start.320x240x16.bmp b/apps/plugins/bitmaps/native/sudoku_start.320x240x16.bmp index bd4d7c4ee2..b223614341 100755 Binary files a/apps/plugins/bitmaps/native/sudoku_start.320x240x16.bmp and b/apps/plugins/bitmaps/native/sudoku_start.320x240x16.bmp differ diff --git a/apps/plugins/sudoku/sudoku.c b/apps/plugins/sudoku/sudoku.c index 191f985e3b..6efd7ffbfd 100644 --- a/apps/plugins/sudoku/sudoku.c +++ b/apps/plugins/sudoku/sudoku.c @@ -130,11 +130,11 @@ static const char default_game[9][9] = #define CELL_HEIGHT 16 #elif (LCD_HEIGHT>=240) && (LCD_WIDTH>=320) -/* iPod Video - 320x240, 9 cells @ 25x25 with 14 border lines */ +/* iPod Video - 320x240, 9 cells @ 24x24 with 14 border lines */ /* Internal dimensions of a cell */ -#define CELL_WIDTH 25 -#define CELL_HEIGHT 25 +#define CELL_WIDTH 24 +#define CELL_HEIGHT 24 #else #error SUDOKU: Unsupported LCD size @@ -144,11 +144,11 @@ static const char default_game[9][9] = #define VERTICAL_LAYOUT #if (LCD_HEIGHT>=320) && (LCD_WIDTH>=240) -/* Gigabeat - 240x320, 9 cells @ 16x16 with 14 border lines */ +/* Gigabeat - 240x320, 9 cells @ 24x24 with 14 border lines */ /* Internal dimensions of a cell */ -#define CELL_WIDTH 25 -#define CELL_HEIGHT 25 +#define CELL_WIDTH 24 +#define CELL_HEIGHT 24 #else #error SUDOKU: Unsupported LCD size -- cgit v1.2.3