aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v6he.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/script_v6he.cpp')
-rw-r--r--scumm/script_v6he.cpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/scumm/script_v6he.cpp b/scumm/script_v6he.cpp
index b723db98ef..60ee5ccaa6 100644
--- a/scumm/script_v6he.cpp
+++ b/scumm/script_v6he.cpp
@@ -1477,37 +1477,4 @@ void ScummEngine_v6he::decodeParseString(int m, int n) {
}
}
-void ScummEngine_v6he::o6_quitPauseRestart() {
- byte subOp = fetchScriptByte();
- int par1;
-
- if (_heversion == 60)
- if (subOp != 158 && subOp != 160)
- error("o6_quitPauseRestart invalid case %d", subOp);
-
-
- switch (subOp & 0xff) {
- case 158: // SO_RESTART
- restart();
- break;
- case 160: // SO_QUIT
- shutDown();
- break;
- case 250:
- par1 = pop();
- warning("stub: o6_quitPauseRestart subOpcode %d", subOp);
- break;
- case 253:
- par1 = pop();
- warning("stub: o6_quitPauseRestart subOpcode %d", subOp);
- case 244:
- case 251:
- case 252:
- warning("stub: o6_quitPauseRestart subOpcode %d", subOp);
- break;
- default:
- error("o6_quitPauseRestart invalid case %d", subOp);
- }
-}
-
} // End of namespace Scumm