diff options
author | Filippos Karapetis | 2015-12-04 22:10:07 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2015-12-23 21:33:50 +0100 |
commit | 6eb9c084bed4108b729568d0cdbac66d2a5d9172 (patch) | |
tree | b30f4b441fab87da789b7742dcf0451c12b3f99a | |
parent | 3ac02c1196875ff28e4aa9d2804bef811f8decb6 (diff) | |
download | scummvm-rg350-6eb9c084bed4108b729568d0cdbac66d2a5d9172.tar.gz scummvm-rg350-6eb9c084bed4108b729568d0cdbac66d2a5d9172.tar.bz2 scummvm-rg350-6eb9c084bed4108b729568d0cdbac66d2a5d9172.zip |
LAB: Remove dead code
-rw-r--r-- | engines/lab/engine.cpp | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/engines/lab/engine.cpp b/engines/lab/engine.cpp index fa12324264..b4b20e7e4d 100644 --- a/engines/lab/engine.cpp +++ b/engines/lab/engine.cpp @@ -1053,8 +1053,6 @@ bool LabEngine::from_crumbs(uint32 tmpClass, uint16 code, uint16 Qualifier, Comm } void LabEngine::go() { - bool doIntro = true; - _isHiRes = ((getFeatures() & GF_LOWRES) == 0); if (!_graphics->setUpScreens()) { @@ -1066,19 +1064,13 @@ void LabEngine::go() { initRoomBuffer(); - if (!doIntro) - _music->initMusic(); - _msgFont = _resource->getFont("P:AvanteG.12"); _event->mouseHide(); - if (doIntro) { - Intro *intro = new Intro(this); - intro->introSequence(); - delete intro; - } else - _anim->_doBlack = true; + Intro *intro = new Intro(this); + intro->introSequence(); + delete intro; _event->mouseShow(); mainGameLoop(); |