diff options
author | Johannes Schickel | 2006-07-26 05:33:48 +0000 |
---|---|---|
committer | Johannes Schickel | 2006-07-26 05:33:48 +0000 |
commit | d2befe0c6f808777622c520940af64db34c5245d (patch) | |
tree | 4fdff8d56a40cb3d740ea49297731681b72f6ebd /engines | |
parent | 5ccb436cad9682bdaa86a41299c5ec7e2b0b0a02 (diff) | |
download | scummvm-rg350-d2befe0c6f808777622c520940af64db34c5245d.tar.gz scummvm-rg350-d2befe0c6f808777622c520940af64db34c5245d.tar.bz2 scummvm-rg350-d2befe0c6f808777622c520940af64db34c5245d.zip |
Skips scroll down sequence then the user wishes to skip the intro.
svn-id: r23596
Diffstat (limited to 'engines')
-rw-r--r-- | engines/kyra/sequences_v1.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/kyra/sequences_v1.cpp b/engines/kyra/sequences_v1.cpp index 0d15768f01..d89bb1291b 100644 --- a/engines/kyra/sequences_v1.cpp +++ b/engines/kyra/sequences_v1.cpp @@ -177,7 +177,7 @@ void KyraEngine::seq_introLogos() { if (wait > 0) { delay(wait); } - } while (y2 >= 64 && !_quitFlag); + } while (y2 >= 64 && !_quitFlag && !_abortIntroFlag); if (_quitFlag) return; |