summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-08-24 01:13:59 +0000
committerThomas Martitz <kugel@rockbox.org>2009-08-24 01:13:59 +0000
commit32d50c2803737a4b5ea61968afed41675c3a54b6 (patch)
tree6f1d24a7c5fe681a3ff2ed0e443588c6f80211cc
parent11def4a3b77a3403f9447a5746ee2a86b901686d (diff)
downloadrockbox-32d50c2803737a4b5ea61968afed41675c3a54b6.tar.gz
rockbox-32d50c2803737a4b5ea61968afed41675c3a54b6.zip
Bubbles: Change the saving message slightly to include saving scores.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22489 a1c6a512-1295-4272-9138-f99709370657
-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);