diff options
author | Travis Howell | 2004-03-04 02:47:39 +0000 |
---|---|---|
committer | Travis Howell | 2004-03-04 02:47:39 +0000 |
commit | 2f60f4485da6906e82ffebecd406d9c2918b5343 (patch) | |
tree | 24e58dd91640713a53f0f858c33744f27a6c6144 /scumm | |
parent | 8f8d992a3c1e46916ab1d26bc1c562da76ae4b44 (diff) | |
download | scummvm-rg350-2f60f4485da6906e82ffebecd406d9c2918b5343.tar.gz scummvm-rg350-2f60f4485da6906e82ffebecd406d9c2918b5343.tar.bz2 scummvm-rg350-2f60f4485da6906e82ffebecd406d9c2918b5343.zip |
Allow --demo-mode with maniac (Enchanced)
svn-id: r13173
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/scummvm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scumm/scummvm.cpp b/scumm/scummvm.cpp index e3b81bc3a6..b4e25861ea 100644 --- a/scumm/scummvm.cpp +++ b/scumm/scummvm.cpp @@ -971,7 +971,7 @@ void ScummEngine::launch() { args[0] = _bootParam; _saveLoadFlag = 0; - if (_gameId == GID_MANIAC && _version == 1 && _demoMode) + if (_gameId == GID_MANIAC && _demoMode) runScript(9, 0, 0, args); else runScript(1, 0, 0, args); |