aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorJames Brown2004-01-16 16:28:56 +0000
committerJames Brown2004-01-16 16:28:56 +0000
commiteeab2bb3bf2b014cdc2a87824dcecc93f341e11c (patch)
tree8b6ca0a32c4adf504f1a52aa4ff05fa7a9c76b89 /scumm
parent770d94b6071d5cd4ba0f4db7127b032c72c02a47 (diff)
downloadscummvm-rg350-eeab2bb3bf2b014cdc2a87824dcecc93f341e11c.tar.gz
scummvm-rg350-eeab2bb3bf2b014cdc2a87824dcecc93f341e11c.tar.bz2
scummvm-rg350-eeab2bb3bf2b014cdc2a87824dcecc93f341e11c.zip
Hack for Launcher Scaler dropdown. Backends using the Launcher will need to implement the OSystem HAS_SCALER property. The global options dialog still needs doing.
svn-id: r12436
Diffstat (limited to 'scumm')
-rw-r--r--scumm/scummvm.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp
index 70e46b323b..75a4fd7330 100644
--- a/scumm/scummvm.cpp
+++ b/scumm/scummvm.cpp
@@ -991,7 +991,9 @@ void ScummEngine::launch() {
if (_saveLoadFlag != 2 || !loadState(_saveLoadSlot, _saveLoadCompatible)) {
int args[16];
memset(args, 0, sizeof(args));
- args[0] = _bootParam;
+ args[0] = _bootParam;
+
+ _saveLoadFlag = 0;
if (_gameId == GID_MANIAC && _version == 1 && _demoMode)
runScript(9, 0, 0, args);
else