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/menus/eq_menu.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/menus/eq_menu.c')
-rw-r--r-- | apps/menus/eq_menu.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/menus/eq_menu.c b/apps/menus/eq_menu.c index 65b17a73c9..0cf63bb20d 100644 --- a/apps/menus/eq_menu.c +++ b/apps/menus/eq_menu.c @@ -589,12 +589,12 @@ static bool eq_save_preset(void) if (!kbd_input(filename, sizeof filename)) { fd = creat(filename); if (fd < 0) - gui_syncsplash(HZ, true, str(LANG_FAILED)); + gui_syncsplash(HZ, str(LANG_FAILED)); else break; } else { - gui_syncsplash(HZ, true, str(LANG_MENU_SETTING_CANCEL)); + gui_syncsplash(HZ, str(LANG_MENU_SETTING_CANCEL)); return false; } } @@ -613,7 +613,7 @@ static bool eq_save_preset(void) close(fd); - gui_syncsplash(HZ, true, str(LANG_SETTINGS_SAVED)); + gui_syncsplash(HZ, str(LANG_SETTINGS_SAVED)); return true; } |