diff options
author | Kirben | 2013-08-16 15:49:30 +1000 |
---|---|---|
committer | Kirben | 2013-08-16 15:49:30 +1000 |
commit | b4f2e2ead43087dec0ad355118f05c1115b18908 (patch) | |
tree | 5baa6fbed1a8c02d1d7a23dab1415d1854ec230e /engines | |
parent | 0c8f8898ffe2eeea15691a315eb890d74fdc29a7 (diff) | |
download | scummvm-rg350-b4f2e2ead43087dec0ad355118f05c1115b18908.tar.gz scummvm-rg350-b4f2e2ead43087dec0ad355118f05c1115b18908.tar.bz2 scummvm-rg350-b4f2e2ead43087dec0ad355118f05c1115b18908.zip |
SCUMM: Always confirm quit when required in HE games.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/scumm/he/script_v100he.cpp | 2 | ||||
-rw-r--r-- | engines/scumm/he/script_v70he.cpp | 2 | ||||
-rw-r--r-- | engines/scumm/he/script_v72he.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/engines/scumm/he/script_v100he.cpp b/engines/scumm/he/script_v100he.cpp index b024154c7f..987f74957c 100644 --- a/engines/scumm/he/script_v100he.cpp +++ b/engines/scumm/he/script_v100he.cpp @@ -2148,7 +2148,7 @@ void ScummEngine_v100he::o100_systemOps() { break; case 132: // Confirm shutdown - quitGame(); + confirmExitDialog(); break; case 133: quitGame(); diff --git a/engines/scumm/he/script_v70he.cpp b/engines/scumm/he/script_v70he.cpp index adb2fcac2e..9259e0db2f 100644 --- a/engines/scumm/he/script_v70he.cpp +++ b/engines/scumm/he/script_v70he.cpp @@ -309,7 +309,7 @@ void ScummEngine_v70he::o70_systemOps() { break; case 160: // Confirm shutdown - quitGame(); + confirmExitDialog(); break; case 244: quitGame(); diff --git a/engines/scumm/he/script_v72he.cpp b/engines/scumm/he/script_v72he.cpp index f36f5cc130..d4920cf430 100644 --- a/engines/scumm/he/script_v72he.cpp +++ b/engines/scumm/he/script_v72he.cpp @@ -1199,7 +1199,7 @@ void ScummEngine_v72he::o72_systemOps() { break; case 160: // Confirm shutdown - quitGame(); + confirmExitDialog(); break; case 244: quitGame(); |