[Scummvm-cvs-logs] SF.net SVN: scummvm:[40660] scummvm/trunk/engines/kyra/lol.cpp
lordhoto at users.sourceforge.net
lordhoto at users.sourceforge.net
Mon May 18 00:20:01 CEST 2009
Revision: 40660
http://scummvm.svn.sourceforge.net/scummvm/?rev=40660&view=rev
Author: lordhoto
Date: 2009-05-17 22:20:00 +0000 (Sun, 17 May 2009)
Log Message:
-----------
Fix sound file missing warning for DOS version of LoL.
Modified Paths:
--------------
scummvm/trunk/engines/kyra/lol.cpp
Modified: scummvm/trunk/engines/kyra/lol.cpp
===================================================================
--- scummvm/trunk/engines/kyra/lol.cpp 2009-05-17 22:12:36 UTC (rev 40659)
+++ scummvm/trunk/engines/kyra/lol.cpp 2009-05-17 22:20:00 UTC (rev 40660)
@@ -606,7 +606,8 @@
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);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
More information about the Scummvm-git-logs
mailing list