summaryrefslogtreecommitdiff
path: root/apps/talk.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/talk.c')
-rw-r--r--apps/talk.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/apps/talk.c b/apps/talk.c
index db52afc834..6e59cde90e 100644
--- a/apps/talk.c
+++ b/apps/talk.c
@@ -610,7 +610,10 @@ int talk_spell(const char* spell, bool enqueue)
610 else if (c == '+') 610 else if (c == '+')
611 talk_id(VOICE_PLUS, true); 611 talk_id(VOICE_PLUS, true);
612 else if (c == '.') 612 else if (c == '.')
613 talk_id(VOICE_POINT, true); 613 talk_id(VOICE_POINT, true);
614 /* fixme: change to VOICE_DOT when settled in the voice files */
615 else if (c == ' ')
616 talk_id(VOICE_PAUSE, true);
614 } 617 }
615 618
616 return 0; 619 return 0;