diff options
author | Torbjörn Andersson | 2006-09-10 18:22:27 +0000 |
---|---|---|
committer | Torbjörn Andersson | 2006-09-10 18:22:27 +0000 |
commit | 632a1a3a2269b4c41a9ccb8bc077e803e3da1b46 (patch) | |
tree | 5c5111f7f6f82aa05cfdfa73b7b7d8fe937553cf | |
parent | a851fb353c81089bdb9e3c0e14407a23441a32ac (diff) | |
download | scummvm-rg350-632a1a3a2269b4c41a9ccb8bc077e803e3da1b46.tar.gz scummvm-rg350-632a1a3a2269b4c41a9ccb8bc077e803e3da1b46.tar.bz2 scummvm-rg350-632a1a3a2269b4c41a9ccb8bc077e803e3da1b46.zip |
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?)
svn-id: r23866
-rw-r--r-- | engines/kyra/sequences_v2.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/engines/kyra/sequences_v2.cpp b/engines/kyra/sequences_v2.cpp index 0069d988b4..77e9958d0e 100644 --- a/engines/kyra/sequences_v2.cpp +++ b/engines/kyra/sequences_v2.cpp @@ -33,7 +33,9 @@ namespace Kyra { 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; |