summaryrefslogtreecommitdiff
path: root/apps/plugins/jewels.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/jewels.c')
-rw-r--r--apps/plugins/jewels.c26
1 files changed, 25 insertions, 1 deletions
diff --git a/apps/plugins/jewels.c b/apps/plugins/jewels.c
index ba74879359..d0bf1af5e1 100644
--- a/apps/plugins/jewels.c
+++ b/apps/plugins/jewels.c
@@ -123,7 +123,8 @@ PLUGIN_HEADER
123#define NUM_SCORES 10 123#define NUM_SCORES 10
124 124
125/* use 22x22 tiles (H300, iPod Color) */ 125/* use 22x22 tiles (H300, iPod Color) */
126#elif ((LCD_HEIGHT == 176) && (LCD_WIDTH == 220)) 126#elif ((LCD_HEIGHT == 176) && (LCD_WIDTH == 220)) || \
127 ((LCD_HEIGHT == 220) && (LCD_WIDTH == 176))
127#define TILE_WIDTH 22 128#define TILE_WIDTH 22
128#define TILE_HEIGHT 22 129#define TILE_HEIGHT 22
129#define YOFS 0 130#define YOFS 0
@@ -1306,6 +1307,29 @@ static int jewels_main(struct game_context* bj) {
1306 rb->lcd_puts(0, 9, "SELECT to select"); 1307 rb->lcd_puts(0, 9, "SELECT to select");
1307 rb->lcd_puts(0, 10, "Long SELECT to show menu"); 1308 rb->lcd_puts(0, 10, "Long SELECT to show menu");
1308 rb->lcd_puts(0, 11, "A to cancel"); 1309 rb->lcd_puts(0, 11, "A to cancel");
1310#elif CONFIG_KEYPAD == SANSA_E200_PAD
1311 rb->lcd_puts(0, 2, "Swap pairs of jewels to");
1312 rb->lcd_puts(0, 3, "form connected segments");
1313 rb->lcd_puts(0, 4, "of three or more of the");
1314 rb->lcd_puts(0, 5, "same type.");
1315 rb->lcd_puts(0, 7, "Controls:");
1316 rb->lcd_puts(0, 8, "Directions to move");
1317 rb->lcd_puts(0, 9, "SELECT to select");
1318 rb->lcd_puts(0, 10, "Long SELECT to show menu");
1319 rb->lcd_puts(0, 11, "POWER to cancel");
1320#elif CONFIG_KEYPAD == IRIVER_H10_PAD
1321 rb->lcd_puts(0, 2, "Swap pairs of jewels");
1322 rb->lcd_puts(0, 3, "to form connected");
1323 rb->lcd_puts(0, 4, "segments of three or ");
1324 rb->lcd_puts(0, 5, "more of the");
1325 rb->lcd_puts(0, 6, "same type.");
1326 rb->lcd_puts(0, 8, "Controls:");
1327 rb->lcd_puts(0, 9, "Directions or scroll to move");
1328 rb->lcd_puts(0, 10, "PLAY to select");
1329 rb->lcd_puts(0, 11, "Long PLAY for menu");
1330 rb->lcd_puts(0, 12, "POWER to cancel");
1331#else
1332 #warning: missing help text.
1309#endif 1333#endif
1310 rb->lcd_update(); 1334 rb->lcd_update();
1311 while(true) { 1335 while(true) {