forked from len0rd/rockbox
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
This commit is contained in:
parent
887cfeb9f5
commit
d158da2f00
4 changed files with 6 additions and 6 deletions
Binary file not shown.
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 6.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 6.7 KiB |
Binary file not shown.
Before Width: | Height: | Size: 7.9 KiB After Width: | Height: | Size: 6.7 KiB |
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue