diff options
author | Jens Arnold <amiconn@rockbox.org> | 2007-03-16 21:56:08 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2007-03-16 21:56:08 +0000 |
commit | 4d6374c9236b93e0bd457f99944164fc493d1120 (patch) | |
tree | ff9630fcef66e63c61cc0a74e97f21220e668f75 /apps/plugins/sort.c | |
parent | 2c643b9f3e22ee07f7949a5471f726758dc40841 (diff) | |
download | rockbox-4d6374c9236b93e0bd457f99944164fc493d1120.tar.gz rockbox-4d6374c9236b93e0bd457f99944164fc493d1120.tar.bz2 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/sort.c')
-rw-r--r-- | apps/plugins/sort.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/plugins/sort.c b/apps/plugins/sort.c index 80ef22fa44..79b5400db2 100644 --- a/apps/plugins/sort.c +++ b/apps/plugins/sort.c @@ -191,32 +191,32 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) pointers = (char **)(buf + buf_size - sizeof(int)); rb->lcd_clear_display(); - rb->splash(0, true, "Loading..."); + rb->splash(0, "Loading..."); rc = read_buffer(0); if(rc == 0) { rb->lcd_clear_display(); - rb->splash(0, true, "Sorting..."); + rb->splash(0, "Sorting..."); sort_buffer(); rb->lcd_clear_display(); - rb->splash(0, true, "Writing..."); + rb->splash(0, "Writing..."); rc = write_file(); if(rc < 0) { rb->lcd_clear_display(); - rb->splash(HZ, true, "Can't write file: %d", rc); + rb->splash(HZ, "Can't write file: %d", rc); } else { rb->lcd_clear_display(); - rb->splash(HZ, true, "Done"); + rb->splash(HZ, "Done"); } } else { if(rc < 0) { rb->lcd_clear_display(); - rb->splash(HZ, true, "Can't read file: %d", rc); + rb->splash(HZ, "Can't read file: %d", rc); } else { rb->lcd_clear_display(); - rb->splash(HZ, true, "The file is too big"); + rb->splash(HZ, "The file is too big"); } } |