LAB: Add support for saving and loading games from the GMM

This commit is contained in:
Filippos Karapetis 2015-12-27 23:22:54 +02:00
parent 4548cbddb5
commit 3977a7ffa1
5 changed files with 33 additions and 9 deletions

View file

@ -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();
}