forked from len0rd/rockbox
Get rid of the 'center' parameter for splashes. There were only 2 of almost 500 splashes which were not centered.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12807 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
2c643b9f3e
commit
4d6374c923
107 changed files with 529 additions and 553 deletions
|
|
@ -1660,12 +1660,12 @@ inline bool handle_buttons(void)
|
|||
}
|
||||
#ifdef RC_QUIT
|
||||
if (pressed & RC_QUIT) {
|
||||
rb->splash(HZ * 1, true, "Quit");
|
||||
rb->splash(HZ * 1, "Quit");
|
||||
return true;
|
||||
}
|
||||
#endif
|
||||
if (pressed & QUIT) {
|
||||
rb->splash(HZ * 1, true, "Quit");
|
||||
rb->splash(HZ * 1, "Quit");
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
@ -1772,7 +1772,7 @@ enum plugin_status plugin_start(struct plugin_api* api, UNUSED void* parameter)
|
|||
|
||||
/* Game Over. */
|
||||
/* TODO: Play game over sound */
|
||||
rb->splash(HZ * 2, true, "Game Over");
|
||||
rb->splash(HZ * 2, "Game Over");
|
||||
if (score > hiscore.score) {
|
||||
/* Save new hiscore */
|
||||
hiscore.score = score;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue