summaryrefslogtreecommitdiff
path: root/apps/plugins/clix.c
diff options
context:
space:
mode:
authorKarl Kurbjun <kkurbjun@gmail.com>2009-08-03 01:07:58 +0000
committerKarl Kurbjun <kkurbjun@gmail.com>2009-08-03 01:07:58 +0000
commit50d3928901069d908238930b880b878f3d760dd4 (patch)
tree81babdb7ab853d60502910e04c16ae29f14a9e73 /apps/plugins/clix.c
parentbbc9aebae3ec6e900abdf257a0b377a0f5b45911 (diff)
downloadrockbox-50d3928901069d908238930b880b878f3d760dd4.tar.gz
rockbox-50d3928901069d908238930b880b878f3d760dd4.zip
Blackjack: Use standard menu and add playback menu, use pluginlib high scores.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22126 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/clix.c')
-rw-r--r--apps/plugins/clix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/clix.c b/apps/plugins/clix.c
index 461ef5a58d..5f9ad517ab 100644
--- a/apps/plugins/clix.c
+++ b/apps/plugins/clix.c
@@ -619,7 +619,7 @@ static int clix_menu(struct clix_game_state_t* state, bool ingame)
619 return 1; 619 return 1;
620 break; 620 break;
621 case 3: 621 case 3:
622 highscore_show(NUM_SCORES, highest, NUM_SCORES); 622 highscore_show(NUM_SCORES, highest, NUM_SCORES, true);
623 break; 623 break;
624 case 4: 624 case 4:
625 playback_control(NULL); 625 playback_control(NULL);
@@ -773,7 +773,7 @@ static int clix_handle_game(struct clix_game_state_t* state)
773 rb->splash(HZ*2, "New High Score"); 773 rb->splash(HZ*2, "New High Score");
774 if (position != -1) 774 if (position != -1)
775 highscore_show(position, highest, 775 highscore_show(position, highest,
776 NUM_SCORES); 776 NUM_SCORES, true);
777 if (clix_menu(state, 0)) 777 if (clix_menu(state, 0))
778 return 1; 778 return 1;
779 break; 779 break;