diff options
| author | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2008-08-03 20:20:28 +0000 |
|---|---|---|
| committer | Dominik Riebeling <Dominik.Riebeling@gmail.com> | 2008-08-03 20:20:28 +0000 |
| commit | 038eb36643d01a966f847a660308c8de96fece42 (patch) | |
| tree | cb1c52157bcb9e5a07a8f9846175c01ac3de4c00 | |
| parent | 036e617b35fe1d2421c294c96891b4ae64b8258f (diff) | |
| download | rockbox-038eb36643d01a966f847a660308c8de96fece42.zip rockbox-038eb36643d01a966f847a660308c8de96fece42.tar.gz rockbox-038eb36643d01a966f847a660308c8de96fece42.tar.bz2 rockbox-038eb36643d01a966f847a660308c8de96fece42.tar.xz | |
Don't over-quote additional command line options for external TTS.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18189 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | rbutil/rbutilqt/tts.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/rbutil/rbutilqt/tts.cpp b/rbutil/rbutilqt/tts.cpp index fd0097c..c603e14 100644 --- a/rbutil/rbutilqt/tts.cpp +++ b/rbutil/rbutilqt/tts.cpp @@ -91,9 +91,9 @@ TTSExes::TTSExes(QString name) : TTSBase() { m_name = name; - m_TemplateMap["espeak"] = "\"%exe\" \"%options\" -w \"%wavfile\" \"%text\""; - m_TemplateMap["flite"] = "\"%exe\" \"%options\" -o \"%wavfile\" \"%text\""; - m_TemplateMap["swift"] = "\"%exe\" \"%options\" -o \"%wavfile\" \"%text\""; + m_TemplateMap["espeak"] = "\"%exe\" %options -w \"%wavfile\" \"%text\""; + m_TemplateMap["flite"] = "\"%exe\" %options -o \"%wavfile\" \"%text\""; + m_TemplateMap["swift"] = "\"%exe\" %options -o \"%wavfile\" \"%text\""; } |