forked from len0rd/rockbox
FS#6539 - Thanks to Tom Ross
Add Jewels, Spacerocks, Wormlet, Rockboy and Sudoku for the e200. Also Includes manual changes for plugins. Add X5 keymappings for wormlet to the manual. Add help text for Jewels on the H10 and give a warning if help text is not defined. Fix bug in spacerocks lives drawing on large screens (larger than Ondio). Change spacerocks comments to C style. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12018 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
6de815be5c
commit
41ee9e3304
21 changed files with 154 additions and 73 deletions
|
@ -129,8 +129,7 @@ static const char default_game[9][9] =
|
|||
#define CELL_WIDTH 12
|
||||
#define CELL_HEIGHT 12
|
||||
|
||||
#elif ((LCD_HEIGHT==176) && (LCD_WIDTH==220)) || \
|
||||
((LCD_HEIGHT==220) && (LCD_WIDTH==176))
|
||||
#elif ((LCD_HEIGHT==176) && (LCD_WIDTH==220))
|
||||
/* Iriver h300, iPod Color/Photo - 220x176, 9 cells @ 16x16 with 14 border lines */
|
||||
|
||||
/* Internal dimensions of a cell */
|
||||
|
@ -151,7 +150,14 @@ static const char default_game[9][9] =
|
|||
#else /* Vertical layout, scratchpad at the bottom */
|
||||
#define VERTICAL_LAYOUT
|
||||
|
||||
#if (LCD_HEIGHT>=320) && (LCD_WIDTH>=240)
|
||||
#if ((LCD_HEIGHT==220) && (LCD_WIDTH==176))
|
||||
/* e200, 9 cells @ 16x16 with 14 border lines */
|
||||
|
||||
/* Internal dimensions of a cell */
|
||||
#define CELL_WIDTH 16
|
||||
#define CELL_HEIGHT 16
|
||||
|
||||
#elif (LCD_HEIGHT>=320) && (LCD_WIDTH>=240)
|
||||
/* Gigabeat - 240x320, 9 cells @ 24x24 with 14 border lines */
|
||||
|
||||
/* Internal dimensions of a cell */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue