diff options
author | Max Horn | 2004-09-20 19:48:08 +0000 |
---|---|---|
committer | Max Horn | 2004-09-20 19:48:08 +0000 |
commit | f61a0f83ff5c3c98e6efaa573d45b3c39601cb6e (patch) | |
tree | 19f13bebadd7ecb05d13dfeda5d415a40dfe9d69 /scumm/script_v72he.cpp | |
parent | dfab30c0121da3fda2ff2e382d7613a9eaedea48 (diff) | |
download | scummvm-rg350-f61a0f83ff5c3c98e6efaa573d45b3c39601cb6e.tar.gz scummvm-rg350-f61a0f83ff5c3c98e6efaa573d45b3c39601cb6e.tar.bz2 scummvm-rg350-f61a0f83ff5c3c98e6efaa573d45b3c39601cb6e.zip |
more cleanup
svn-id: r15206
Diffstat (limited to 'scumm/script_v72he.cpp')
-rw-r--r-- | scumm/script_v72he.cpp | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/scumm/script_v72he.cpp b/scumm/script_v72he.cpp index fa8927024d..9a0090b3dd 100644 --- a/scumm/script_v72he.cpp +++ b/scumm/script_v72he.cpp @@ -310,7 +310,7 @@ void ScummEngine_v72he::setupOpcodes() { OPCODE(o6_getAnimateVariable), OPCODE(o6_invalid), /* D4 */ - OPCODE(o72_shuffle), + OPCODE(o6_shuffle), OPCODE(o72_jumpToScript), OPCODE(o6_band), OPCODE(o6_bor), @@ -1707,12 +1707,6 @@ void ScummEngine_v72he::o72_unknownCF() { push(readVar(0)); } -void ScummEngine_v72he::o72_shuffle() { - int b = pop(); - int a = pop(); - shuffleArray(fetchScriptWord(), a, b); -} - void ScummEngine_v72he::o72_jumpToScript() { int args[16]; int script, flags; |