1
0
Fork 0
forked from len0rd/rockbox

move w32-specific resources to a separate file to prevent building them on other platforms. Use an alias in the resource file to remove the need of copying the file.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15949 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dominik Riebeling 2007-12-17 21:35:25 +00:00
parent 213d9a2ca1
commit 01a8a7f7af
4 changed files with 9 additions and 12 deletions

View file

@ -260,7 +260,7 @@ bool TTSSapi::start()
m_TTSLanguage =userSettings->value("ttslanguage","").toString();
userSettings->endGroup();
QFile::copy(":/builtin/builtin/sapi_voice.vbs",QDir::tempPath() + "/sapi_voice.vbs");
QFile::copy(":/builtin/sapi_voice.vbs",QDir::tempPath() + "/sapi_voice.vbs");
m_TTSexec = QDir::tempPath() +"/sapi_voice.vbs";
QFileInfo tts(m_TTSexec);