diff options
Diffstat (limited to 'engines/lab/engine.cpp')
-rw-r--r-- | engines/lab/engine.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/engines/lab/engine.cpp b/engines/lab/engine.cpp index 20f38ef884..cf6ae71563 100644 --- a/engines/lab/engine.cpp +++ b/engines/lab/engine.cpp @@ -1036,9 +1036,11 @@ void LabEngine::go() { // If the user has requested to load a game from the launcher, skip the intro if (!ConfMan.hasKey("save_slot")) { _event->mouseHide(); + _introPlaying = true; Intro *intro = new Intro(this); intro->play(); delete intro; + _introPlaying = false; _event->mouseShow(); } |