diff options
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/puzzles/rockbox.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/plugins/puzzles/rockbox.c b/apps/plugins/puzzles/rockbox.c index 45e0df7..56bb83e 100644 --- a/apps/plugins/puzzles/rockbox.c +++ b/apps/plugins/puzzles/rockbox.c @@ -1493,7 +1493,10 @@ static int process_input(int tmo) break; case BTN_FIRE: - state = CURSOR_SELECT; + if(!strcmp("Fifteen", midend_which_game(me)->name)) + state = 'h'; /* hint */ + else + state = CURSOR_SELECT; break; default: |