mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
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
|
|
@ -194,7 +194,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|||
|
||||
if (!parameter)
|
||||
{
|
||||
rb->splash(HZ*3, true, "Play gameboy ROM file! (.gb/.gbc)");
|
||||
rb->splash(HZ*3, "Play gameboy ROM file! (.gb/.gbc)");
|
||||
return PLUGIN_OK;
|
||||
}
|
||||
|
||||
|
|
@ -223,11 +223,11 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|||
|
||||
if(shut&&!cleanshut)
|
||||
{
|
||||
rb->splash(HZ/2, true, errormsg);
|
||||
rb->splash(HZ/2, errormsg);
|
||||
return PLUGIN_ERROR;
|
||||
}
|
||||
pcm_close();
|
||||
rb->splash(HZ/2, true, "Shutting down");
|
||||
rb->splash(HZ/2, "Shutting down");
|
||||
|
||||
savesettings();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue