forked from len0rd/rockbox
Change lang_init() to take a source, destination, and count. Needed for translatable plugins. Minor stylist changes as well.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23221 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
95e596c340
commit
9fbf346368
3 changed files with 19 additions and 20 deletions
|
|
@ -312,7 +312,7 @@ static void init(void)
|
|||
button_init();
|
||||
backlight_init();
|
||||
sim_tasks_init();
|
||||
lang_init();
|
||||
lang_init(language_builtin, language_strings, LANG_LAST_INDEX_IN_ARRAY);
|
||||
#ifdef DEBUG
|
||||
debug_init();
|
||||
#endif
|
||||
|
|
@ -403,7 +403,7 @@ static void init(void)
|
|||
font_init();
|
||||
|
||||
show_logo();
|
||||
lang_init();
|
||||
lang_init(language_builtin, language_strings, LANG_LAST_INDEX_IN_ARRAY);
|
||||
|
||||
#ifdef DEBUG
|
||||
debug_init();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue