[Scummvm-cvs-logs] SF.net SVN: scummvm:[44164] scummvm/trunk/engines/kyra/script_hof.cpp
lordhoto at users.sourceforge.net
lordhoto at users.sourceforge.net
Thu Sep 17 18:03:49 CEST 2009
Revision: 44164
http://scummvm.svn.sourceforge.net/scummvm/?rev=44164&view=rev
Author: lordhoto
Date: 2009-09-17 16:03:48 +0000 (Thu, 17 Sep 2009)
Log Message:
-----------
Enable delay for Ninteno DS in all occasions in o2_isAnySoundPlaying.
Modified Paths:
--------------
scummvm/trunk/engines/kyra/script_hof.cpp
Modified: scummvm/trunk/engines/kyra/script_hof.cpp
===================================================================
--- scummvm/trunk/engines/kyra/script_hof.cpp 2009-09-17 16:01:21 UTC (rev 44163)
+++ scummvm/trunk/engines/kyra/script_hof.cpp 2009-09-17 16:03:48 UTC (rev 44164)
@@ -738,7 +738,9 @@
// Also the Ninteno DS backend seems only to update the sound, when
// either OSystem::updateScreen or OSystem::delayMillis is called.
// So we have to call delay here, since otherwise the game would hang.
+#ifndef __DS__
if (_currentScene == 16 && _currentChapter == 1)
+#endif
delay(_tickLength);
return _sound->voiceIsPlaying() ? 1 : 0;
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