From de79e68b094da6a82843eab4b81934c8105fc19a Mon Sep 17 00:00:00 2001 From: Jörg Hohensohn Date: Sat, 23 Oct 2004 17:58:38 +0000 Subject: 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 --- apps/talk.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'apps/talk.c') 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) else if (c == '+') talk_id(VOICE_PLUS, true); else if (c == '.') - talk_id(VOICE_POINT, true); + talk_id(VOICE_POINT, true); + /* fixme: change to VOICE_DOT when settled in the voice files */ + else if (c == ' ') + talk_id(VOICE_PAUSE, true); } return 0; -- cgit v1.2.3