aboutsummaryrefslogtreecommitdiff
path: root/engines/kyra
diff options
context:
space:
mode:
authorFlorian Kagerer2009-04-06 17:09:02 +0000
committerFlorian Kagerer2009-04-06 17:09:02 +0000
commit74fdcca04e6a2f9270d6f061540068043b2015e1 (patch)
treea14eb22392f519b5b1a3b8a7218e0879960d12d1 /engines/kyra
parent1c7894caf3dffa1d8bdc6bd6c55a09fccb436f0e (diff)
downloadscummvm-rg350-74fdcca04e6a2f9270d6f061540068043b2015e1.tar.gz
scummvm-rg350-74fdcca04e6a2f9270d6f061540068043b2015e1.tar.bz2
scummvm-rg350-74fdcca04e6a2f9270d6f061540068043b2015e1.zip
LOL: startup fix for floppy version
svn-id: r39875
Diffstat (limited to 'engines/kyra')
-rw-r--r--engines/kyra/resource.cpp2
-rw-r--r--engines/kyra/script_tim.cpp2
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;
}