summaryrefslogtreecommitdiff
path: root/apps/plugins/pacbox
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/pacbox
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/pacbox')
-rw-r--r--apps/plugins/pacbox/pacbox.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/pacbox/pacbox.c b/apps/plugins/pacbox/pacbox.c
index 4c539c593f..3a56430106 100644
--- a/apps/plugins/pacbox/pacbox.c
+++ b/apps/plugins/pacbox/pacbox.c
@@ -412,13 +412,13 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
412 412
413 /* Save the user settings if they have changed */ 413 /* Save the user settings if they have changed */
414 if (rb->memcmp(&settings,&old_settings,sizeof(settings))!=0) { 414 if (rb->memcmp(&settings,&old_settings,sizeof(settings))!=0) {
415 rb->splash(0,true,"Saving settings..."); 415 rb->splash(0, "Saving settings...");
416 configfile_save(SETTINGS_FILENAME, config, 416 configfile_save(SETTINGS_FILENAME, config,
417 sizeof(config)/sizeof(*config), 417 sizeof(config)/sizeof(*config),
418 SETTINGS_VERSION); 418 SETTINGS_VERSION);
419 } 419 }
420 } else { 420 } else {
421 rb->splash(HZ*2,true,"No ROMs in /.rockbox/pacman/"); 421 rb->splash(HZ*2, "No ROMs in /.rockbox/pacman/");
422 } 422 }
423 423
424#ifdef HAVE_ADJUSTABLE_CPU_FREQ 424#ifdef HAVE_ADJUSTABLE_CPU_FREQ