aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2015-10-24 16:32:46 -0400
committerPaul Gilbert2015-10-24 16:32:46 -0400
commitfaff6b534def656444cac5f33d14368f8cdb3bd5 (patch)
tree4cf64d61061b44db6ac76e3c4f3d4284ea57eb05
parentc37997aaf8a1db2b60690032fe16e7f41048a8ac (diff)
downloadscummvm-rg350-faff6b534def656444cac5f33d14368f8cdb3bd5.tar.gz
scummvm-rg350-faff6b534def656444cac5f33d14368f8cdb3bd5.tar.bz2
scummvm-rg350-faff6b534def656444cac5f33d14368f8cdb3bd5.zip
MADS: Don't show protection dialog when resuming game from in-game menu
-rw-r--r--engines/mads/nebular/game_nebular.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/mads/nebular/game_nebular.cpp b/engines/mads/nebular/game_nebular.cpp
index e8e0a4f42c..8f40bc15c8 100644
--- a/engines/mads/nebular/game_nebular.cpp
+++ b/engines/mads/nebular/game_nebular.cpp
@@ -118,6 +118,10 @@ void GameNebular::startGame() {
initializeGlobals();
+ if (_loadGameSlot >= 0)
+ // User selected to resume a savegame
+ return;
+
// Check copy protection
ProtectionResult protectionResult = checkCopyProtection();