aboutsummaryrefslogtreecommitdiff
path: root/engines/mutationofjb/mutationofjb.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/mutationofjb/mutationofjb.cpp')
-rw-r--r--engines/mutationofjb/mutationofjb.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/engines/mutationofjb/mutationofjb.cpp b/engines/mutationofjb/mutationofjb.cpp
index 1537646f9e..d96d1658b8 100644
--- a/engines/mutationofjb/mutationofjb.cpp
+++ b/engines/mutationofjb/mutationofjb.cpp
@@ -294,7 +294,11 @@ Common::Error MutationOfJBEngine::run() {
setupCursor();
- _game->changeScene(13, false); // Initial scene.
+ if (ConfMan.hasKey("save_slot")) {
+ loadGameState(ConfMan.getInt("save_slot"));
+ } else {
+ _game->changeScene(13, false); // Initial scene.
+ }
while (!shouldQuit()) {
Common::Event event;