summaryrefslogtreecommitdiff
path: root/apps/plugins/bubbles.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/bubbles.c')
-rw-r--r--apps/plugins/bubbles.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/bubbles.c b/apps/plugins/bubbles.c
index 64ab258240..d5d9987f68 100644
--- a/apps/plugins/bubbles.c
+++ b/apps/plugins/bubbles.c
@@ -2170,7 +2170,7 @@ static void bubbles_recordscore(struct game_context* bb) {
2170 if (position==0) 2170 if (position==0)
2171 rb->splash(HZ*2, "New High Score"); 2171 rb->splash(HZ*2, "New High Score");
2172 if (position != -1) 2172 if (position != -1)
2173 highscore_show(position, highscores, NUM_SCORES); 2173 highscore_show(position, highscores, NUM_SCORES, true);
2174} 2174}
2175 2175
2176/***************************************************************************** 2176/*****************************************************************************
@@ -2397,7 +2397,7 @@ static int bubbles(struct game_context* bb) {
2397 startlevel--; 2397 startlevel--;
2398 break; 2398 break;
2399 case 3: /* High scores */ 2399 case 3: /* High scores */
2400 highscore_show(NUM_SCORES, highscores, NUM_SCORES); 2400 highscore_show(NUM_SCORES, highscores, NUM_SCORES, true);
2401 break; 2401 break;
2402 case 4: /* Playback Control */ 2402 case 4: /* Playback Control */
2403 playback_control(NULL); 2403 playback_control(NULL);