diff options
author | Travis Howell | 2005-03-11 03:29:31 +0000 |
---|---|---|
committer | Travis Howell | 2005-03-11 03:29:31 +0000 |
commit | eebf5a7812b05bfc1b34aa8fdb179064cc07e77e (patch) | |
tree | 1f24fa4cea626ab8f0731ec8f964126edc0874c8 | |
parent | 06a8268792ee88f1514e6e77ce3eb7af0f00a1b9 (diff) | |
download | scummvm-rg350-eebf5a7812b05bfc1b34aa8fdb179064cc07e77e.tar.gz scummvm-rg350-eebf5a7812b05bfc1b34aa8fdb179064cc07e77e.tar.bz2 scummvm-rg350-eebf5a7812b05bfc1b34aa8fdb179064cc07e77e.zip |
Correct quit/restart
svn-id: r17071
-rw-r--r-- | scumm/script_v100he.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/scumm/script_v100he.cpp b/scumm/script_v100he.cpp index 620b094006..ae69324183 100644 --- a/scumm/script_v100he.cpp +++ b/scumm/script_v100he.cpp @@ -2057,15 +2057,16 @@ void ScummEngine_v100he::o100_quitPauseRestart() { subOp -= 61; switch (subOp) { + case 0: // SO_RESTART + restart(); + break; case 67: clearDrawObjectQueue(); break; case 71: + case 72: shutDown(); break; - case 72: // SO_RESTART - restart(); - break; case 75: // Clear screen // Update palette |