1
0
Fork 0
forked from len0rd/rockbox

Accept FS#6159 'Add voice to roughly 100 splash screens and yes-no menus' by Stephane Doyon with some minor tweaks by me. Rerun 'configure' and do a 'make clean' before rebuilding your voice files.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@14213 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Nils Wallménius 2007-08-06 13:08:36 +00:00
parent d755c283ca
commit 5b76936a44
24 changed files with 411 additions and 171 deletions

View file

@ -544,6 +544,7 @@ int settings_save( void )
screens[i].update();
#endif
}
cond_talk_ids_fq(LANG_SETTINGS_SAVE_FAILED);
sleep(HZ*2);
return -1;
}
@ -575,15 +576,15 @@ bool settings_save_config(int options)
break;
}
else {
gui_syncsplash(HZ, str(LANG_CANCEL));
gui_syncsplash(HZ, ID2P(LANG_CANCEL));
return false;
}
}
if (settings_write_config(filename, options))
gui_syncsplash(HZ, str(LANG_SETTINGS_SAVED));
gui_syncsplash(HZ, ID2P(LANG_SETTINGS_SAVED));
else
gui_syncsplash(HZ, str(LANG_FAILED));
gui_syncsplash(HZ, ID2P(LANG_FAILED));
return true;
}