summaryrefslogtreecommitdiff
path: root/tools/sapi_voice.vbs
diff options
context:
space:
mode:
authorDominik Riebeling <Dominik.Riebeling@gmail.com>2012-09-08 20:46:20 +0200
committerDominik Riebeling <Dominik.Riebeling@gmail.com>2012-09-08 20:46:20 +0200
commit9e2eb6243f4aa1fccdb8cdd2abfe7942be91c25c (patch)
tree5309bb6e03b203f42a1c880617ccc078db8a0aca /tools/sapi_voice.vbs
parent328ff6d979c028ecba9c57d12c1e75637be20396 (diff)
downloadrockbox-9e2eb6243f4aa1fccdb8cdd2abfe7942be91c25c.tar.gz
rockbox-9e2eb6243f4aa1fccdb8cdd2abfe7942be91c25c.zip
Change sapi_voice.vbs voice list separation character.
The currently used comma for separating voices for the /listvoices command is used by Speech Platform based voices. Change the character to a semicolon which isn't used by voices. Change-Id: I1a7e6e4229f864f56635143e864dadf38cdd7e73
Diffstat (limited to 'tools/sapi_voice.vbs')
-rw-r--r--tools/sapi_voice.vbs2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sapi_voice.vbs b/tools/sapi_voice.vbs
index 6f20109c24..a8b98ac924 100644
--- a/tools/sapi_voice.vbs
+++ b/tools/sapi_voice.vbs
@@ -139,7 +139,7 @@ Else ' SAPI5
139 For Each nLangID in LangIDs(sLanguage) 139 For Each nLangID in LangIDs(sLanguage)
140 sSelectString = "Language=" & Hex(nLangID) 140 sSelectString = "Language=" & Hex(nLangID)
141 For Each oVoice in oSpVoice.GetVoices(sSelectString) 141 For Each oVoice in oSpVoice.GetVoices(sSelectString)
142 WScript.StdErr.Write oVoice.GetAttribute("Name") & "," 142 WScript.StdErr.Write oVoice.GetAttribute("Name") & ";"
143 Next 143 Next
144 Next 144 Next
145 WScript.StdErr.WriteLine 145 WScript.StdErr.WriteLine