mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 13:15:18 -05:00
rbutil: Fix broken voice file urls for a few targets.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15929 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
ed33c89f9f
commit
fb70493f80
2 changed files with 35 additions and 3 deletions
|
|
@ -663,9 +663,12 @@ void RbUtilQt::installVoice()
|
|||
installer = new ZipInstaller(this);
|
||||
installer->setUnzip(false);
|
||||
|
||||
QString voiceurl = devices->value("voice_url").toString() + "/" +
|
||||
userSettings->value("platform").toString() + "-" +
|
||||
versmap.value("arch_date") + "-english.voice";
|
||||
QString voiceurl = devices->value("voice_url").toString() + "/" ;
|
||||
|
||||
devices->beginGroup(userSettings->value("platform").toString());
|
||||
voiceurl += devices->value("voicename").toString() + "-" +
|
||||
versmap.value("arch_date") + "-english.voice";
|
||||
devices->endGroup();
|
||||
qDebug() << voiceurl;
|
||||
|
||||
installer->setProxy(proxy());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue