diff options
author | Travis Howell | 2004-09-21 12:08:02 +0000 |
---|---|---|
committer | Travis Howell | 2004-09-21 12:08:02 +0000 |
commit | 042d59acb2c26a4c332198f98c75221fe9c56d03 (patch) | |
tree | 44c032e6546c801d049858161778a6b052337b13 | |
parent | 0a4a328cc4b5c8a91aa18123ddb38238499d8674 (diff) | |
download | scummvm-rg350-042d59acb2c26a4c332198f98c75221fe9c56d03.tar.gz scummvm-rg350-042d59acb2c26a4c332198f98c75221fe9c56d03.tar.bz2 scummvm-rg350-042d59acb2c26a4c332198f98c75221fe9c56d03.zip |
Add missing cases
svn-id: r15220
-rw-r--r-- | scumm/script_v7he.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/scumm/script_v7he.cpp b/scumm/script_v7he.cpp index 8090a74410..a28ae984e6 100644 --- a/scumm/script_v7he.cpp +++ b/scumm/script_v7he.cpp @@ -619,6 +619,13 @@ void ScummEngine_v70he::o70_quitPauseRestart() { int par1; switch (subOp & 0xff) { + case 22: // HE80+ + clearDrawObjectQueue(); + break; + case 26: // HE80+ + // Clear screen + // Update palette + break; case 158: // SO_RESTART restart(); break; |