summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/plugins/bubbles.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/plugins/bubbles.c b/apps/plugins/bubbles.c
index 344b732968..fe9e693a61 100644
--- a/apps/plugins/bubbles.c
+++ b/apps/plugins/bubbles.c
@@ -2519,10 +2519,11 @@ enum plugin_status plugin_start(const void* parameter) {
2519 break; 2519 break;
2520 2520
2521 case BB_QUIT: 2521 case BB_QUIT:
2522#define SAVE_MESSAGE "Saving Game and Scores..."
2522 /* the first splash is to make sure it's read, but don't make it 2523 /* the first splash is to make sure it's read, but don't make it
2523 * too long to not delay the saving further */ 2524 * too long to not delay the saving further */
2524 rb->splash(HZ/5, "Saving Game ..."); 2525 rb->splash(HZ/5, SAVE_MESSAGE);
2525 rb->splash(0, "Saving Game ..."); 2526 rb->splash(0, SAVE_MESSAGE);
2526 bubbles_savegame(&bb); 2527 bubbles_savegame(&bb);
2527 bubbles_savedata(); 2528 bubbles_savedata();
2528 highscore_save(SCORE_FILE, highscores, NUM_SCORES); 2529 highscore_save(SCORE_FILE, highscores, NUM_SCORES);