diff options
author | Jens Arnold <amiconn@rockbox.org> | 2008-08-06 18:38:09 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2008-08-06 18:38:09 +0000 |
commit | 729d259388f0f418bcf285698a6c751335457ac0 (patch) | |
tree | f23bbfc386a2b7c1b0240bc00a57240163d8ec97 | |
parent | a8502a32687cb824686d216d639108322e244c80 (diff) | |
download | rockbox-729d259388f0f418bcf285698a6c751335457ac0.tar.gz rockbox-729d259388f0f418bcf285698a6c751335457ac0.zip |
Bugfix: Printing the unknown vendor warning to StdOut made it not appear in the console, and confused voice.pl.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18201 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | tools/sapi_voice.vbs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/sapi_voice.vbs b/tools/sapi_voice.vbs index a7d773e40e..4803162c63 100644 --- a/tools/sapi_voice.vbs +++ b/tools/sapi_voice.vbs @@ -295,7 +295,7 @@ Function AudioFormat(ByRef sVendor) AudioFormat = SPSF_16kHz16BitMono
Case Else
AudioFormat = SPSF_22kHz16BitMono
- WScript.StdOut.WriteLine "Warning - unknown vendor """ & sVendor _
+ WScript.StdErr.WriteLine "Warning - unknown vendor """ & sVendor _
& """ - using default wave format"
End Select
End Function
|