diff options
author | Strangerke | 2013-03-24 11:00:22 +0100 |
---|---|---|
committer | Strangerke | 2013-03-24 11:00:22 +0100 |
commit | b91c9527296208bbeff695744d27a94cdebbfd08 (patch) | |
tree | 57d3fb91904da1470f21a643aac1724fa6ef1de6 | |
parent | 91255b56aed3c216185c82127ef084671caee726 (diff) | |
download | scummvm-rg350-b91c9527296208bbeff695744d27a94cdebbfd08.tar.gz scummvm-rg350-b91c9527296208bbeff695744d27a94cdebbfd08.tar.bz2 scummvm-rg350-b91c9527296208bbeff695744d27a94cdebbfd08.zip |
HOPKINS: reorder one statement for consistency
-rw-r--r-- | engines/hopkins/anim.h | 2 | ||||
-rw-r--r-- | engines/hopkins/hopkins.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/hopkins/anim.h b/engines/hopkins/anim.h index 39727fe68f..93256f9110 100644 --- a/engines/hopkins/anim.h +++ b/engines/hopkins/anim.h @@ -51,7 +51,7 @@ public: void playSequence(const Common::String &file, uint32 rate1, uint32 rate2, uint32 rate3, bool skipEscFl, bool skipSeqFl, bool noColFl = false); void playSequence2(const Common::String &file, uint32 rate1, uint32 rate2, uint32 rate3, bool skipSeqFl = false); - void setClearAnimFlag() { _clearAnimationFl = true; } + void setClearAnimFlag() { _clearAnimationFl = true; } void unsetClearAnimFlag() { _clearAnimationFl = false; } }; diff --git a/engines/hopkins/hopkins.cpp b/engines/hopkins/hopkins.cpp index ecf95294ea..0c1f628933 100644 --- a/engines/hopkins/hopkins.cpp +++ b/engines/hopkins/hopkins.cpp @@ -1804,9 +1804,9 @@ void HopkinsEngine::playIntro() { _graphicsManager->fadeOutLong(); _graphicsManager->endDisplayBob(); - _animationManager->setClearAnimFlag(); _soundManager->playSound(3); _soundManager->_specialSoundNum = 1; + _animationManager->setClearAnimFlag(); _animationManager->playAnim("INTRO1.anm", 10, 24, 18); _soundManager->_specialSoundNum = 0; if (shouldQuit() || _eventsManager->_escKeyFl) |