From 6af732d17aa1eb882e3c52242b2bf7f2fcccc752 Mon Sep 17 00:00:00 2001 From: Jens Arnold Date: Wed, 20 Feb 2008 22:09:53 +0000 Subject: 2 small fixes: * List SAPI5 voices with their actual names, noth with their descriptio. * Actually use the passed speed for SAPI4. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16359 a1c6a512-1295-4272-9138-f99709370657 --- tools/sapi_voice.vbs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/sapi_voice.vbs b/tools/sapi_voice.vbs index 440444ca38..4199101bde 100755 --- a/tools/sapi_voice.vbs +++ b/tools/sapi_voice.vbs @@ -108,7 +108,7 @@ If bSAPI4 Then oTTS.Select nMode ' Speed selection - If sSpeed <> "" Then oSpVoice.Speed = sSpeed + If sSpeed <> "" Then oTTS.Speed = sSpeed Else ' SAPI5 ' Create SAPI5 object Set oSpVoice = CreateObject("SAPI.SpVoice") @@ -123,7 +123,7 @@ Else ' SAPI5 For Each nLangID in LangIDs(sLanguage) sSelectString = "Language=" & Hex(nLangID) For Each oVoice in oSpVoice.GetVoices(sSelectString) - WScript.StdErr.Write oVoice.GetDescription & "," + WScript.StdErr.Write oVoice.GetAttribute("Name") & "," Next Next WScript.StdErr.WriteLine -- cgit v1.2.3