diff options
| -rw-r--r-- | apps/player/keyboard.c | 17 | ||||
| -rw-r--r-- | apps/recorder/keyboard.c | 17 |
2 files changed, 18 insertions, 16 deletions
diff --git a/apps/player/keyboard.c b/apps/player/keyboard.c index 6baa0d5..c89161c 100644 --- a/apps/player/keyboard.c +++ b/apps/player/keyboard.c @@ -76,14 +76,15 @@ static void kbd_spellchar(char c) { if (talk_menus_enabled()) /* voice UI? */ { - unsigned char tmp[5]; - /* store char to pass to talk_spell */ - unsigned char* utf8 = utf8encode(c, tmp); - *utf8 = 0; - - if(c == ' ') - talk_id(VOICE_BLANK, false); - else talk_spell(tmp, false); + unsigned char tmp[5]; + /* store char to pass to talk_spell */ + unsigned char* utf8 = utf8encode(c, tmp); + *utf8 = 0; + + if(c == ' ') + talk_id(VOICE_BLANK, false); + else + talk_spell(tmp, false); } } diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c index 7a46431..fbfb559 100644 --- a/apps/recorder/keyboard.c +++ b/apps/recorder/keyboard.c @@ -192,14 +192,15 @@ static void kbd_spellchar(unsigned short c) { if (talk_menus_enabled()) /* voice UI? */ { - unsigned char tmp[5]; - /* store char to pass to talk_spell */ - unsigned char* utf8 = utf8encode(c, tmp); - *utf8 = 0; - - if(c == ' ') - talk_id(VOICE_BLANK, false); - else talk_spell(tmp, false); + unsigned char tmp[5]; + /* store char to pass to talk_spell */ + unsigned char* utf8 = utf8encode(c, tmp); + *utf8 = 0; + + if(c == ' ') + talk_id(VOICE_BLANK, false); + else + talk_spell(tmp, false); } } |