diff options
author | Antoine Cellerier <dionoea@videolan.org> | 2006-07-08 13:19:23 +0000 |
---|---|---|
committer | Antoine Cellerier <dionoea@videolan.org> | 2006-07-08 13:19:23 +0000 |
commit | 4ffff6fbad368ccfd255244333ccddccb290f9d6 (patch) | |
tree | 7fedb3ee32d71fcaeced365fe8bc180e867190eb | |
parent | b44714331b2354b08eddb7e6c47c0b05ce9b0243 (diff) | |
download | rockbox-4ffff6fbad368ccfd255244333ccddccb290f9d6.tar.gz rockbox-4ffff6fbad368ccfd255244333ccddccb290f9d6.zip |
Apply patch number 3 from http://www.rockbox.org/tracker/task/5430
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10186 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/plugins/minesweeper.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/plugins/minesweeper.c b/apps/plugins/minesweeper.c index 0b4f57106d..a549718274 100644 --- a/apps/plugins/minesweeper.c +++ b/apps/plugins/minesweeper.c | |||
@@ -246,7 +246,7 @@ tile minefield[LCD_HEIGHT/8][LCD_WIDTH/8]; | |||
246 | /* total number of mines on the game */ | 246 | /* total number of mines on the game */ |
247 | int mine_num = 0; | 247 | int mine_num = 0; |
248 | 248 | ||
249 | /* percentage of mines on minefield used durring generation */ | 249 | /* percentage of mines on minefield used during generation */ |
250 | int p=16; | 250 | int p=16; |
251 | 251 | ||
252 | /* number of tiles left on the game */ | 252 | /* number of tiles left on the game */ |
@@ -460,8 +460,10 @@ int minesweeper(void) | |||
460 | rb->lcd_puts(0,6,"ON to start"); | 460 | rb->lcd_puts(0,6,"ON to start"); |
461 | #elif CONFIG_KEYPAD == ONDIO_PAD | 461 | #elif CONFIG_KEYPAD == ONDIO_PAD |
462 | rb->lcd_puts(0,6,"MODE to start"); | 462 | rb->lcd_puts(0,6,"MODE to start"); |
463 | #elif CONFIG_KEYPAD == IRIVER_H100_PAD | 463 | #elif (CONFIG_KEYPAD==IRIVER_H100_PAD) || (CONFIG_KEYPAD==IPOD_4G_PAD) |
464 | rb->lcd_puts(0,6,"SELECT to start"); | 464 | rb->lcd_puts(0,6,"SELECT to start"); |
465 | #elif CONFIG_KEYPAD == IAUDIO_X5_PAD | ||
466 | rb->lcd_puts(0,6,"REC to start"); | ||
465 | #endif | 467 | #endif |
466 | rb->lcd_update(); | 468 | rb->lcd_update(); |
467 | 469 | ||