summaryrefslogtreecommitdiff
path: root/apps/recorder/keyboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder/keyboard.c')
-rw-r--r--apps/recorder/keyboard.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/apps/recorder/keyboard.c b/apps/recorder/keyboard.c
index 7a46431881..fbfb55942e 100644
--- a/apps/recorder/keyboard.c
+++ b/apps/recorder/keyboard.c
@@ -192,14 +192,15 @@ static void kbd_spellchar(unsigned short c)
192{ 192{
193 if (talk_menus_enabled()) /* voice UI? */ 193 if (talk_menus_enabled()) /* voice UI? */
194 { 194 {
195 unsigned char tmp[5]; 195 unsigned char tmp[5];
196 /* store char to pass to talk_spell */ 196 /* store char to pass to talk_spell */
197 unsigned char* utf8 = utf8encode(c, tmp); 197 unsigned char* utf8 = utf8encode(c, tmp);
198 *utf8 = 0; 198 *utf8 = 0;
199 199
200 if(c == ' ') 200 if(c == ' ')
201 talk_id(VOICE_BLANK, false); 201 talk_id(VOICE_BLANK, false);
202 else talk_spell(tmp, false); 202 else
203 talk_spell(tmp, false);
203 } 204 }
204} 205}
205 206