1
0
Fork 0
forked from len0rd/rockbox

set_bool uses lang.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2423 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Mats Lidell 2002-09-26 05:51:35 +00:00
parent 8c6f309347
commit c1afabb61a

View file

@ -638,7 +638,7 @@ void settings_display(void)
bool set_bool(char* string, bool* variable ) bool set_bool(char* string, bool* variable )
{ {
return set_bool_options(string, variable, "yes", "no "); return set_bool_options(string, variable, str(LANG_SET_BOOL_YES), str(LANG_SET_BOOL_NO));
} }
bool set_bool_options(char* string, bool* variable, bool set_bool_options(char* string, bool* variable,