summaryrefslogtreecommitdiff
path: root/apps/plugins/bubbles.c
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 /apps/plugins/bubbles.c
parent11def4a3b77a3403f9447a5746ee2a86b901686d (diff)
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
Diffstat (limited to 'apps/plugins/bubbles.c')
-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) {
break;
case BB_QUIT:
+#define SAVE_MESSAGE "Saving Game and Scores..."
/* the first splash is to make sure it's read, but don't make it
* too long to not delay the saving further */
- rb->splash(HZ/5, "Saving Game ...");
- rb->splash(0, "Saving Game ...");
+ rb->splash(HZ/5, SAVE_MESSAGE);
+ rb->splash(0, SAVE_MESSAGE);
bubbles_savegame(&bb);
bubbles_savedata();
highscore_save(SCORE_FILE, highscores, NUM_SCORES);