[Scummvm-cvs-logs] SF.net SVN: scummvm: [23866] scummvm/trunk/engines/kyra/sequences_v2.cpp

eriktorbjorn at users.sourceforge.net eriktorbjorn at users.sourceforge.net
Sun Sep 10 20:22:31 CEST 2006


Revision: 23866
          http://svn.sourceforge.net/scummvm/?rev=23866&view=rev
Author:   eriktorbjorn
Date:     2006-09-10 11:22:27 -0700 (Sun, 10 Sep 2006)

Log Message:
-----------
Clear _skipFlag at beginning of Kyra 2 intro. Otherwise, skipping it once will
automatically skip it if you try to watch it a second time. (Are there any
other flags that need to be cleared as well?)

Modified Paths:
--------------
    scummvm/trunk/engines/kyra/sequences_v2.cpp

Modified: scummvm/trunk/engines/kyra/sequences_v2.cpp
===================================================================
--- scummvm/trunk/engines/kyra/sequences_v2.cpp	2006-09-10 16:29:06 UTC (rev 23865)
+++ scummvm/trunk/engines/kyra/sequences_v2.cpp	2006-09-10 18:22:27 UTC (rev 23866)
@@ -33,7 +33,9 @@
 
 void KyraEngine_v2::seq_playSequences(int startSeq, int endSeq) {
 	debugC(9, kDebugLevelMain, "KyraEngine_v2::seq_playSequences(%i, %i)", startSeq, endSeq);
-	
+
+	_skipFlag = false;
+
 	if (endSeq == -1)
 		endSeq = startSeq;
 	


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