From 4d6374c9236b93e0bd457f99944164fc493d1120 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Fri, 16 Mar 2007 21:56:08 +0000 Subject: 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 --- apps/plugins/sort.c | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'apps/plugins/sort.c') 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"); } } -- cgit