diff options
| author | Karl Kurbjun <kkurbjun@gmail.com> | 2009-08-03 01:07:58 +0000 |
|---|---|---|
| committer | Karl Kurbjun <kkurbjun@gmail.com> | 2009-08-03 01:07:58 +0000 |
| commit | 50d3928901069d908238930b880b878f3d760dd4 (patch) | |
| tree | 81babdb7ab853d60502910e04c16ae29f14a9e73 /apps/plugins/clix.c | |
| parent | bbc9aebae3ec6e900abdf257a0b377a0f5b45911 (diff) | |
| download | rockbox-50d3928901069d908238930b880b878f3d760dd4.zip rockbox-50d3928901069d908238930b880b878f3d760dd4.tar.gz rockbox-50d3928901069d908238930b880b878f3d760dd4.tar.bz2 rockbox-50d3928901069d908238930b880b878f3d760dd4.tar.xz | |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/clix.c b/apps/plugins/clix.c index 461ef5a..5f9ad51 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) return 1; break; case 3: - highscore_show(NUM_SCORES, highest, NUM_SCORES); + highscore_show(NUM_SCORES, highest, NUM_SCORES, true); break; case 4: playback_control(NULL); @@ -773,7 +773,7 @@ static int clix_handle_game(struct clix_game_state_t* state) rb->splash(HZ*2, "New High Score"); if (position != -1) highscore_show(position, highest, - NUM_SCORES); + NUM_SCORES, true); if (clix_menu(state, 0)) return 1; break; |