diff options
author | Johannes Schickel | 2009-05-17 22:20:00 +0000 |
---|---|---|
committer | Johannes Schickel | 2009-05-17 22:20:00 +0000 |
commit | dd6484066f701a8c456ed90a2608b05b200bd68b (patch) | |
tree | 3887c8cc5f2136dd5cfa1e83d8f3ba3aacba1327 | |
parent | 6c3ef0f57eea8f4a116c66866b8f3e7ad9c5edcb (diff) | |
download | scummvm-rg350-dd6484066f701a8c456ed90a2608b05b200bd68b.tar.gz scummvm-rg350-dd6484066f701a8c456ed90a2608b05b200bd68b.tar.bz2 scummvm-rg350-dd6484066f701a8c456ed90a2608b05b200bd68b.zip |
Fix sound file missing warning for DOS version of LoL.
svn-id: r40660
-rw-r--r-- | engines/kyra/lol.cpp | 3 |
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); |