From 53b1aaf7b07a3c97d1e6ae8df27e117d2736993d Mon Sep 17 00:00:00 2001 From: Steve Bavin Date: Mon, 11 Jun 2007 08:30:13 +0000 Subject: ...forgot one. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13616 a1c6a512-1295-4272-9138-f99709370657 --- apps/player/keyboard.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'apps') 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; -- cgit v1.2.3