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
|
|
@ -180,13 +180,13 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|||
#ifdef HAVE_LCD_BITMAP
|
||||
rb->lcd_getstringsize("Files: ", &fontwidth, &fontheight);
|
||||
#endif
|
||||
rb->splash(HZ, true, "Counting...");
|
||||
rb->splash(HZ, "Counting...");
|
||||
update_screen();
|
||||
lasttick = *rb->current_tick;
|
||||
|
||||
traversedir("", "");
|
||||
if (abort == true) {
|
||||
rb->splash(HZ, true, "Aborted");
|
||||
rb->splash(HZ, "Aborted");
|
||||
return PLUGIN_OK;
|
||||
}
|
||||
update_screen();
|
||||
|
|
@ -194,7 +194,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|||
rb->remote_backlight_on();
|
||||
#endif
|
||||
rb->backlight_on();
|
||||
rb->splash(HZ, true, "Done");
|
||||
rb->splash(HZ, "Done");
|
||||
update_screen();
|
||||
button = rb->button_get(true);
|
||||
while (1) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue