summaryrefslogtreecommitdiff
path: root/apps/plugins/zxbox/spmain.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/zxbox/spmain.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/zxbox/spmain.c')
-rw-r--r--apps/plugins/zxbox/spmain.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/zxbox/spmain.c b/apps/plugins/zxbox/spmain.c
index 20d806eef3..036e28a240 100644
--- a/apps/plugins/zxbox/spmain.c
+++ b/apps/plugins/zxbox/spmain.c
@@ -297,7 +297,7 @@ static void options_menu(void){
297 no_yes, 2, NULL); 297 no_yes, 2, NULL);
298 if (new_setting != settings.invert_colors ) 298 if (new_setting != settings.invert_colors )
299 settings.invert_colors=new_setting; 299 settings.invert_colors=new_setting;
300 rb->splash(HZ, true , "Restart to see effect"); 300 rb->splash(HZ, "Restart to see effect");
301 break; 301 break;
302 case 3: 302 case 3:
303 new_setting = settings.frameskip; 303 new_setting = settings.frameskip;
@@ -467,7 +467,7 @@ static void run_singlemode(void)
467#ifdef USE_GRAY 467#ifdef USE_GRAY
468 gray_show(false); 468 gray_show(false);
469#endif 469#endif
470 rb->splash(0,true,"Saving settings..."); 470 rb->splash(0, "Saving settings...");
471 configfile_save(GLOBALCFG, config,sizeof(config)/sizeof(*config),SETTINGS_VERSION); 471 configfile_save(GLOBALCFG, config,sizeof(config)/sizeof(*config),SETTINGS_VERSION);
472 } 472 }
473 473
@@ -531,7 +531,7 @@ static void init_load(void *parameter)
531 check_params (parameter); 531 check_params (parameter);
532 if(spcf_init_snapshot != NULL) { 532 if(spcf_init_snapshot != NULL) {
533#ifndef USE_GRAY 533#ifndef USE_GRAY
534 rb->splash(HZ,true, "Loading snapshot '%s'", spcf_init_snapshot); 534 rb->splash(HZ, "Loading snapshot '%s'", spcf_init_snapshot);
535#endif 535#endif
536 536
537 load_snapshot_file_type(spcf_init_snapshot, spcf_init_snapshot_type); 537 load_snapshot_file_type(spcf_init_snapshot, spcf_init_snapshot_type);