summaryrefslogtreecommitdiff
path: root/apps/plugins/stats.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-03-16 21:56:08 +0000
committerJens Arnold <amiconn@rockbox.org>2007-03-16 21:56:08 +0000
commit4d6374c9236b93e0bd457f99944164fc493d1120 (patch)
treeff9630fcef66e63c61cc0a74e97f21220e668f75 /apps/plugins/stats.c
parent2c643b9f3e22ee07f7949a5471f726758dc40841 (diff)
downloadrockbox-4d6374c9236b93e0bd457f99944164fc493d1120.tar.gz
rockbox-4d6374c9236b93e0bd457f99944164fc493d1120.zip
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
Diffstat (limited to 'apps/plugins/stats.c')
-rw-r--r--apps/plugins/stats.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/stats.c b/apps/plugins/stats.c
index b6a824e208..b69ab2d8e0 100644
--- a/apps/plugins/stats.c
+++ b/apps/plugins/stats.c
@@ -180,13 +180,13 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
180#ifdef HAVE_LCD_BITMAP 180#ifdef HAVE_LCD_BITMAP
181 rb->lcd_getstringsize("Files: ", &fontwidth, &fontheight); 181 rb->lcd_getstringsize("Files: ", &fontwidth, &fontheight);
182#endif 182#endif
183 rb->splash(HZ, true, "Counting..."); 183 rb->splash(HZ, "Counting...");
184 update_screen(); 184 update_screen();
185 lasttick = *rb->current_tick; 185 lasttick = *rb->current_tick;
186 186
187 traversedir("", ""); 187 traversedir("", "");
188 if (abort == true) { 188 if (abort == true) {
189 rb->splash(HZ, true, "Aborted"); 189 rb->splash(HZ, "Aborted");
190 return PLUGIN_OK; 190 return PLUGIN_OK;
191 } 191 }
192 update_screen(); 192 update_screen();
@@ -194,7 +194,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
194 rb->remote_backlight_on(); 194 rb->remote_backlight_on();
195#endif 195#endif
196 rb->backlight_on(); 196 rb->backlight_on();
197 rb->splash(HZ, true, "Done"); 197 rb->splash(HZ, "Done");
198 update_screen(); 198 update_screen();
199 button = rb->button_get(true); 199 button = rb->button_get(true);
200 while (1) { 200 while (1) {