summaryrefslogtreecommitdiff
path: root/apps/talk.c
diff options
context:
space:
mode:
authorJörg Hohensohn <hohensoh@rockbox.org>2004-10-23 17:58:38 +0000
committerJörg Hohensohn <hohensoh@rockbox.org>2004-10-23 17:58:38 +0000
commitde79e68b094da6a82843eab4b81934c8105fc19a (patch)
treec404268d32206bec19494a316eb1e02640311a3a /apps/talk.c
parentd69c4995f67aef16ea5cc1ae881cbdfc38977e03 (diff)
downloadrockbox-de79e68b094da6a82843eab4b81934c8105fc19a.tar.gz
rockbox-de79e68b094da6a82843eab4b81934c8105fc19a.zip
new voice ID for the space character, allows to spell with a pause, once this is in the voice files
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5333 a1c6a512-1295-4272-9138-f99709370657
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;