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/settings.c | |
parent | 2c643b9f3e22ee07f7949a5471f726758dc40841 (diff) |
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/settings.c')
-rw-r--r-- | apps/settings.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/settings.c b/apps/settings.c index 0b2f2d9d40..57db619d72 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -596,15 +596,15 @@ bool settings_save_config(int options) break; } else { - gui_syncsplash(HZ, true, str(LANG_MENU_SETTING_CANCEL)); + gui_syncsplash(HZ, str(LANG_MENU_SETTING_CANCEL)); return false; } } if (settings_write_config(filename, options)) - gui_syncsplash(HZ, true, str(LANG_SETTINGS_SAVED)); + gui_syncsplash(HZ, str(LANG_SETTINGS_SAVED)); else - gui_syncsplash(HZ, true, str(LANG_FAILED)); + gui_syncsplash(HZ, str(LANG_FAILED)); return true; } @@ -1142,7 +1142,7 @@ static bool do_set_setting(const unsigned char* string, void *variable, { if (*(int*)variable != oldvalue) { - gui_syncsplash(HZ/2,true,str(LANG_MENU_SETTING_CANCEL)); + gui_syncsplash(HZ/2, str(LANG_MENU_SETTING_CANCEL)); *(int*)variable = oldvalue; } } @@ -1150,7 +1150,7 @@ static bool do_set_setting(const unsigned char* string, void *variable, { if (*(bool*)variable != (bool)oldvalue) { - gui_syncsplash(HZ/2,true,str(LANG_MENU_SETTING_CANCEL)); + gui_syncsplash(HZ/2, str(LANG_MENU_SETTING_CANCEL)); *(bool*)variable = (bool)oldvalue; } } |