aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--engines/kyra/lol.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/kyra/lol.cpp b/engines/kyra/lol.cpp
index 49d2831fe6..30687e8101 100644
--- a/engines/kyra/lol.cpp
+++ b/engines/kyra/lol.cpp
@@ -606,7 +606,8 @@ Common::Error LoLEngine::go() {
setupPrologueData(false);
_sound->setSoundList(&_soundData[kMusicIngame]);
- _sound->loadSoundFile(0);
+ if (_flags.platform != Common::kPlatformPC)
+ _sound->loadSoundFile(0);
_tim = new TIMInterpreter_LoL(this, _screen, _system);
assert(_tim);