aboutsummaryrefslogtreecommitdiff
path: root/scumm/script_v7he.cpp
diff options
context:
space:
mode:
authorTravis Howell2005-04-27 13:55:55 +0000
committerTravis Howell2005-04-27 13:55:55 +0000
commitf6971f847ce37b7c8afbbd29262a1ffed7335610 (patch)
tree2cc926b6e16c8e47aaad0d1bb1b06b43ff0d81be /scumm/script_v7he.cpp
parent2c012197910972fc5a16a3316b21b2b4ad7d8687 (diff)
downloadscummvm-rg350-f6971f847ce37b7c8afbbd29262a1ffed7335610.tar.gz
scummvm-rg350-f6971f847ce37b7c8afbbd29262a1ffed7335610.tar.bz2
scummvm-rg350-f6971f847ce37b7c8afbbd29262a1ffed7335610.zip
Fix glitch when skipping AUX sequence in freddi.
Add missing bits of AUX code. svn-id: r17837
Diffstat (limited to 'scumm/script_v7he.cpp')
-rw-r--r--scumm/script_v7he.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/scumm/script_v7he.cpp b/scumm/script_v7he.cpp
index 17c9690fa5..816bdeb2b6 100644
--- a/scumm/script_v7he.cpp
+++ b/scumm/script_v7he.cpp
@@ -796,6 +796,13 @@ void ScummEngine_v70he::o70_kernelSetFunctions() {
_skipProcessActors = 0;
redrawAllActors();
break;
+ case 26:
+ a = derefActor(args[1], "o70_kernelSetFunctions: 26");
+ a->_auxBlock.r.left = 0;
+ a->_auxBlock.r.top = 0;
+ a->_auxBlock.r.right = -1;
+ a->_auxBlock.r.bottom = -1;
+ break;
case 30:
a = derefActor(args[1], "o70_kernelSetFunctions: 30");
a->_clipOverride.bottom = args[2];