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:
parent
2ea75fdbec
commit
1b45b130dc
3 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue