summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2006-08-10 11:14:26 +0000
committerJens Arnold <amiconn@rockbox.org>2006-08-10 11:14:26 +0000
commitd158da2f00551ae4dddbca728bda4c0066f8e83a (patch)
tree2ebc25b2d0a500b3e923534c5f456e16643a372f /apps/plugins
parent887cfeb9f55344db5c8df1f22d5c6a02467764f3 (diff)
downloadrockbox-d158da2f00551ae4dddbca728bda4c0066f8e83a.tar.gz
rockbox-d158da2f00551ae4dddbca728bda4c0066f8e83a.zip
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
Diffstat (limited to 'apps/plugins')
-rwxr-xr-xapps/plugins/bitmaps/native/sudoku_inverse.320x240x16.bmpbin8078 -> 6838 bytes
-rwxr-xr-xapps/plugins/bitmaps/native/sudoku_normal.320x240x16.bmpbin8078 -> 6838 bytes
-rwxr-xr-xapps/plugins/bitmaps/native/sudoku_start.320x240x16.bmpbin8078 -> 6838 bytes
-rw-r--r--apps/plugins/sudoku/sudoku.c12
4 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugins/bitmaps/native/sudoku_inverse.320x240x16.bmp b/apps/plugins/bitmaps/native/sudoku_inverse.320x240x16.bmp
index 2fdf3657ab..faf0616280 100755
--- a/apps/plugins/bitmaps/native/sudoku_inverse.320x240x16.bmp
+++ b/apps/plugins/bitmaps/native/sudoku_inverse.320x240x16.bmp
Binary files 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
--- a/apps/plugins/bitmaps/native/sudoku_normal.320x240x16.bmp
+++ b/apps/plugins/bitmaps/native/sudoku_normal.320x240x16.bmp
Binary files 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
--- a/apps/plugins/bitmaps/native/sudoku_start.320x240x16.bmp
+++ b/apps/plugins/bitmaps/native/sudoku_start.320x240x16.bmp
Binary files 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] =
130#define CELL_HEIGHT 16 130#define CELL_HEIGHT 16
131 131
132#elif (LCD_HEIGHT>=240) && (LCD_WIDTH>=320) 132#elif (LCD_HEIGHT>=240) && (LCD_WIDTH>=320)
133/* iPod Video - 320x240, 9 cells @ 25x25 with 14 border lines */ 133/* iPod Video - 320x240, 9 cells @ 24x24 with 14 border lines */
134 134
135/* Internal dimensions of a cell */ 135/* Internal dimensions of a cell */
136#define CELL_WIDTH 25 136#define CELL_WIDTH 24
137#define CELL_HEIGHT 25 137#define CELL_HEIGHT 24
138 138
139#else 139#else
140 #error SUDOKU: Unsupported LCD size 140 #error SUDOKU: Unsupported LCD size
@@ -144,11 +144,11 @@ static const char default_game[9][9] =
144#define VERTICAL_LAYOUT 144#define VERTICAL_LAYOUT
145 145
146#if (LCD_HEIGHT>=320) && (LCD_WIDTH>=240) 146#if (LCD_HEIGHT>=320) && (LCD_WIDTH>=240)
147/* Gigabeat - 240x320, 9 cells @ 16x16 with 14 border lines */ 147/* Gigabeat - 240x320, 9 cells @ 24x24 with 14 border lines */
148 148
149/* Internal dimensions of a cell */ 149/* Internal dimensions of a cell */
150#define CELL_WIDTH 25 150#define CELL_WIDTH 24
151#define CELL_HEIGHT 25 151#define CELL_HEIGHT 24
152 152
153#else 153#else
154 #error SUDOKU: Unsupported LCD size 154 #error SUDOKU: Unsupported LCD size