aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/he/script_v72he.cpp
diff options
context:
space:
mode:
authorTravis Howell2008-01-06 06:21:04 +0000
committerTravis Howell2008-01-06 06:21:04 +0000
commitf31b835fdadd96bd69d4a047f19a0b76c24892f4 (patch)
treeb8c6f2d8967e00acce4ae908d263882e9cbe1f3c /engines/scumm/he/script_v72he.cpp
parentc43a851e1305b0862b2106ff4ed3f27025ac5f14 (diff)
downloadscummvm-rg350-f31b835fdadd96bd69d4a047f19a0b76c24892f4.tar.gz
scummvm-rg350-f31b835fdadd96bd69d4a047f19a0b76c24892f4.tar.bz2
scummvm-rg350-f31b835fdadd96bd69d4a047f19a0b76c24892f4.zip
Resort a few cases and opcodes in HE code.
svn-id: r30289
Diffstat (limited to 'engines/scumm/he/script_v72he.cpp')
-rw-r--r--engines/scumm/he/script_v72he.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/scumm/he/script_v72he.cpp b/engines/scumm/he/script_v72he.cpp
index 222b3e5a1c..a3b1fd2c6b 100644
--- a/engines/scumm/he/script_v72he.cpp
+++ b/engines/scumm/he/script_v72he.cpp
@@ -1054,6 +1054,11 @@ void ScummEngine_v72he::o72_actorOps() {
_actorClipOverride.left = pop();
adjustRect(_actorClipOverride);
break;
+ case 65: // HE 98+
+ j = pop();
+ i = pop();
+ a->putActor(i, j);
+ break;
case 67: // HE 99+
a->_clipOverride.bottom = pop();
a->_clipOverride.right = pop();
@@ -1061,11 +1066,6 @@ void ScummEngine_v72he::o72_actorOps() {
a->_clipOverride.left = pop();
adjustRect(a->_clipOverride);
break;
- case 65: // HE 98+
- j = pop();
- i = pop();
- a->putActor(i, j);
- break;
case 68: // HE 90+
k = pop();
a->setHEFlag(1, k);