diff options
author | Steve Bavin <pondlife@pondlife.me> | 2007-06-11 08:30:13 +0000 |
---|---|---|
committer | Steve Bavin <pondlife@pondlife.me> | 2007-06-11 08:30:13 +0000 |
commit | 53b1aaf7b07a3c97d1e6ae8df27e117d2736993d (patch) | |
tree | 381b84df556cfe665c8f97da7cccc0bc0c82b9ad | |
parent | 24d9f59c784ab07241b51851a2683ea1c90e89e2 (diff) | |
download | rockbox-53b1aaf7b07a3c97d1e6ae8df27e117d2736993d.tar.gz rockbox-53b1aaf7b07a3c97d1e6ae8df27e117d2736993d.zip |
...forgot one.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13616 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/player/keyboard.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/player/keyboard.c b/apps/player/keyboard.c index 18880d0c47..dcff7e7d62 100644 --- a/apps/player/keyboard.c +++ b/apps/player/keyboard.c @@ -75,7 +75,7 @@ static void kbd_spellchar(char c) { static char spell_char[2] = "\0\0"; /* store char to pass to talk_spell */ - if (global_settings.talk_menu) /* voice UI? */ + if (talk_menus_enabled()) /* voice UI? */ { spell_char[0] = c; talk_spell(spell_char, false); @@ -100,7 +100,7 @@ int kbd_input(char* text, int buflen) editpos = utf8length(text); - if (global_settings.talk_menu) /* voice UI? */ + if (talk_menus_enabled()) /* voice UI? */ talk_spell(text, true); /* spell initial text */ while (!done) @@ -270,7 +270,7 @@ int kbd_input(char* text, int buflen) editpos++; } } - if (global_settings.talk_menu) /* voice UI? */ + if (talk_menus_enabled()) /* voice UI? */ talk_spell(text, false); /* speak revised text */ break; |