1
0
Fork 0
forked from len0rd/rockbox

Use a better string for 'Canceled' splashes.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8737 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Magnus Holmgren 2006-02-19 12:45:32 +00:00
parent 2ea75fdbec
commit 1b45b130dc
3 changed files with 3 additions and 3 deletions

View file

@ -687,7 +687,7 @@ static bool eq_save_preset(void)
break; break;
} }
else { else {
gui_syncsplash(HZ, true, str(LANG_RESET_DONE_CANCEL)); gui_syncsplash(HZ, true, str(LANG_MENU_SETTING_CANCEL));
return false; return false;
} }
} }

View file

@ -1452,7 +1452,7 @@ bool settings_save_config(void)
break; break;
} }
else { else {
gui_syncsplash(HZ, true, str(LANG_RESET_DONE_CANCEL)); gui_syncsplash(HZ, true, str(LANG_MENU_SETTING_CANCEL));
return false; return false;
} }
} }

View file

@ -659,7 +659,7 @@ bool rectrigger(void)
switch (button) { switch (button) {
case TRIG_CANCEL: case TRIG_CANCEL:
gui_syncsplash(50, true, str(LANG_RESET_DONE_CANCEL)); gui_syncsplash(50, true, str(LANG_MENU_SETTING_CANCEL));
global_settings.rec_start_thres = old_start_thres; global_settings.rec_start_thres = old_start_thres;
global_settings.rec_start_duration = old_start_duration; global_settings.rec_start_duration = old_start_duration;
global_settings.rec_prerecord_time = old_prerecord_time; global_settings.rec_prerecord_time = old_prerecord_time;