diff options
author | Travis Howell | 2005-04-21 05:14:19 +0000 |
---|---|---|
committer | Travis Howell | 2005-04-21 05:14:19 +0000 |
commit | 9cbc561eda0b0622cfa9a549a5fbfe0f7ee59f63 (patch) | |
tree | 8d793538e99f50c140f3412b003575a6e391756c /scumm | |
parent | 261a02beec87957beec3775b930b7f53d4ba3574 (diff) | |
download | scummvm-rg350-9cbc561eda0b0622cfa9a549a5fbfe0f7ee59f63.tar.gz scummvm-rg350-9cbc561eda0b0622cfa9a549a5fbfe0f7ee59f63.tar.bz2 scummvm-rg350-9cbc561eda0b0622cfa9a549a5fbfe0f7ee59f63.zip |
Correct argument order.
Fixes glitches in freddi4/spyozon.
svn-id: r17728
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v100he.cpp | 2 | ||||
-rw-r--r-- | scumm/script_v72he.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/scumm/script_v100he.cpp b/scumm/script_v100he.cpp index b43f0062a7..2cd8136c85 100644 --- a/scumm/script_v100he.cpp +++ b/scumm/script_v100he.cpp @@ -407,8 +407,8 @@ void ScummEngine_v100he::o100_actorOps() { a->setAnimSpeed(pop()); break; case 6: - i = pop(); j = pop(); + i = pop(); a->putActor(i, j, a->_room); break; case 8: diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index c08bc8f3f8..b496252c73 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -1128,8 +1128,8 @@ void ScummEngine_v72he::o72_actorOps() { a->_clipOverride.left = pop(); break; case 65: // HE 98+ - i = pop(); j = pop(); + i = pop(); a->putActor(i, j, a->_room); break; case 68: // HE 90+ |