LOL: startup fix for floppy version

svn-id: r39875
This commit is contained in:
Florian Kagerer 2009-04-06 17:09:02 +00:00
parent 1c7894caf3
commit 74fdcca04e
2 changed files with 2 additions and 2 deletions

@ -125,7 +125,7 @@ bool Resource::reset() {
if (!_vm->gameFlags().isTalkie) {
static const char * const list[] = {
"GENERAL.PAK", "STARTUP.PAK", 0
"GENERAL.PAK", 0
};
loadProtectedFiles(list);

@ -619,7 +619,7 @@ int TIMInterpreter::cmd_playVocFile(const uint16 *param) {
if (index < ARRAYSIZE(_vocFiles) && !_vocFiles[index].empty())
vm()->sound()->voicePlay(_vocFiles[index].c_str(), volume, true);
else
vm()->snd_playSoundEffect(index, volume);
vm()->sound()->playSoundEffect(index);
return 1;
}