diff options
author | Kevin Ferrare <kevin@rockbox.org> | 2005-11-04 16:07:50 +0000 |
---|---|---|
committer | Kevin Ferrare <kevin@rockbox.org> | 2005-11-04 16:07:50 +0000 |
commit | 80c0f99a1a1ab3c6ebf30c289ad06a63eac1a6b3 (patch) | |
tree | 126e4ed7d34ce54c6c473ada93bb8a1f6574dd11 /apps/settings.c | |
parent | c34d04618a0ffc80c6dde8e114bf642daaa8ab3b (diff) |
Added iriver remote keys support to the option selection in the menus, corrected a silly c'n'p error
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7750 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
-rw-r--r-- | apps/settings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c index 628d56b43b..582011fa10 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -1401,9 +1401,9 @@ bool set_int(const char* string, if(gui_syncselect_do_button(&select, button)) { *variable=gui_select_get_selected(&select); + gui_syncselect_draw(&select); if (global_settings.talk_menu) { - gui_syncselect_draw(&select); if (voice_unit < UNIT_LAST) { /* use the available unit definition */ talk_value(*variable, voice_unit, false); |