summaryrefslogtreecommitdiff
path: root/apps/plugins/solitaire.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2004-12-26 14:56:05 +0000
committerJens Arnold <amiconn@rockbox.org>2004-12-26 14:56:05 +0000
commitb8c9a0caa3e0ae1aad8abe3ec98b7c0a6d967be7 (patch)
tree36b1bb387adc24243ed5ebf4fe77f2769160a6ca /apps/plugins/solitaire.c
parentdfa95c334b9cffff28059e0de39ae5305e315ee6 (diff)
downloadrockbox-b8c9a0caa3e0ae1aad8abe3ec98b7c0a6d967be7.tar.gz
rockbox-b8c9a0caa3e0ae1aad8abe3ec98b7c0a6d967be7.zip
Plugin fixes: Correct button name for MODE key in help texts, conforming to the manual & wiki documentation (Ondio plugins). Alternate image is selected with MINUS, not MENU (rockbox_flash for player). Shortened some help lines that didn't fit on the display with the default font (solitaire). Fixed a number of typos.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5512 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/solitaire.c')
-rw-r--r--apps/plugins/solitaire.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/solitaire.c b/apps/plugins/solitaire.c
index fa01fbd1cf..9e8347fb79 100644
--- a/apps/plugins/solitaire.c
+++ b/apps/plugins/solitaire.c
@@ -102,8 +102,8 @@ static struct plugin_api* rb;
102#define HELP_SOL_REM2STACK "F3: Put the card on top of the remains' stack on one of the 4 final color stacks." 102#define HELP_SOL_REM2STACK "F3: Put the card on top of the remains' stack on one of the 4 final color stacks."
103 103
104#elif CONFIG_KEYPAD == ONDIO_PAD 104#elif CONFIG_KEYPAD == ONDIO_PAD
105#define HELP_SOL_MOVE "MENU: Select cards, Move cards, reveal hidden cards ..." 105#define HELP_SOL_MOVE "MODE: Select cards, Move cards, reveal hidden cards ..."
106#define HELP_SOL_DRAW "MENU..: Un-select a card if it was selected. Else, draw 3 new cards out of the remains' stack." 106#define HELP_SOL_DRAW "MODE..: Un-select a card if it was selected. Else, draw 3 new cards out of the remains' stack."
107#define HELP_SOL_REM2CUR "LEFT..: Put the card on top of the remains' stack on top of the cursor." 107#define HELP_SOL_REM2CUR "LEFT..: Put the card on top of the remains' stack on top of the cursor."
108#define HELP_SOL_CUR2STACK "RIGHT..: Put the card under the cursor on one of the 4 final color stacks." 108#define HELP_SOL_CUR2STACK "RIGHT..: Put the card under the cursor on one of the 4 final color stacks."
109#define HELP_SOL_REM2STACK "UP..: Put the card on top of the remains' stack on one of the 4 final color stacks." 109#define HELP_SOL_REM2STACK "UP..: Put the card on top of the remains' stack on one of the 4 final color stacks."
@@ -341,13 +341,13 @@ int solitaire_help(void){
341 rb->lcd_putsxy(0, 49, "be done using"); 341 rb->lcd_putsxy(0, 49, "be done using");
342 rb->lcd_putsxy(0, 56, "arrows, ON and F2."); 342 rb->lcd_putsxy(0, 56, "arrows, ON and F2.");
343#elif CONFIG_KEYPAD == ONDIO_PAD 343#elif CONFIG_KEYPAD == ONDIO_PAD
344 rb->lcd_putsxy(0, 0, "Press a key short or"); 344 rb->lcd_putsxy(0, 0, "Press a key short");
345 rb->lcd_putsxy(0, 7, "long to see it's role."); 345 rb->lcd_putsxy(0, 7, "or long to see it's");
346 rb->lcd_putsxy(0, 21, "Press OFF to"); 346 rb->lcd_putsxy(0, 21, "role. Press OFF to");
347 rb->lcd_putsxy(0, 28, "return to menu."); 347 rb->lcd_putsxy(0, 28, "return to menu.");
348 rb->lcd_putsxy(0, 42, "All actions can be"); 348 rb->lcd_putsxy(0, 42, "All actions can be");
349 rb->lcd_putsxy(0, 49, "done using arows,"); 349 rb->lcd_putsxy(0, 49, "done using arrows,");
350 rb->lcd_putsxy(0, 56, "short & long MENU."); 350 rb->lcd_putsxy(0, 56, "short & long MODE.");
351#endif 351#endif
352 352
353 rb->lcd_update(); 353 rb->lcd_update();