diff options
-rw-r--r-- | engines/kyra/resource.cpp | 2 | ||||
-rw-r--r-- | engines/kyra/script_tim.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/kyra/resource.cpp b/engines/kyra/resource.cpp index 5d82500d17..77d6576360 100644 --- a/engines/kyra/resource.cpp +++ b/engines/kyra/resource.cpp @@ -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); diff --git a/engines/kyra/script_tim.cpp b/engines/kyra/script_tim.cpp index 2a6811f8b1..461cd17083 100644 --- a/engines/kyra/script_tim.cpp +++ b/engines/kyra/script_tim.cpp @@ -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; } |