1
0
Fork 0
forked from len0rd/rockbox

Bubbles: Don't save scores when quit without saving is selected and reduce splash duration

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24586 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2010-02-10 18:55:07 +00:00
parent f47b706225
commit fa4ab10bbb

View file

@ -2369,7 +2369,7 @@ static int bubbles_menu_cb(int action, const struct menu_item_ex *this_item)
{ {
int i = ((intptr_t)this_item); int i = ((intptr_t)this_item);
if(action == ACTION_REQUEST_MENUITEM if(action == ACTION_REQUEST_MENUITEM
&& !resume && (i==0 || i==5)) && !resume && (i==0))
return ACTION_EXIT_MENUITEM; return ACTION_EXIT_MENUITEM;
return action; return action;
} }
@ -2537,8 +2537,10 @@ enum plugin_status plugin_start(const void* parameter) {
break; break;
case BB_QUIT: case BB_QUIT:
rb->splash(HZ*1, "Saving game ..."); rb->splash(HZ/3, "Saving game ...");
bubbles_savegame(&bb); bubbles_savegame(&bb);
bubbles_savedata();
highscore_save(SCORE_FILE, highscores, NUM_SCORES);
/* fall through */ /* fall through */
case BB_QUIT_WITHOUT_SAVING: case BB_QUIT_WITHOUT_SAVING:
@ -2549,8 +2551,6 @@ enum plugin_status plugin_start(const void* parameter) {
break; break;
} }
} }
bubbles_savedata();
highscore_save(SCORE_FILE, highscores, NUM_SCORES);
rb->lcd_setfont(FONT_UI); rb->lcd_setfont(FONT_UI);
return ret; return ret;
} }