aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/script_v3.cpp
diff options
context:
space:
mode:
authorTravis Howell2009-10-23 07:51:08 +0000
committerTravis Howell2009-10-23 07:51:08 +0000
commit770fbdcf538b3185d28752c37bb1f06e9bfb5e22 (patch)
tree78932182bfa08c32bb520733d16b6e4db3a4e063 /engines/scumm/script_v3.cpp
parent8e6291f7bbaafeed0718264ae401dcf052559cab (diff)
downloadscummvm-rg350-770fbdcf538b3185d28752c37bb1f06e9bfb5e22.tar.gz
scummvm-rg350-770fbdcf538b3185d28752c37bb1f06e9bfb5e22.tar.bz2
scummvm-rg350-770fbdcf538b3185d28752c37bb1f06e9bfb5e22.zip
Add opcode difference in PCE version of Loom.
svn-id: r45343
Diffstat (limited to 'engines/scumm/script_v3.cpp')
-rw-r--r--engines/scumm/script_v3.cpp6
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/scumm/script_v3.cpp b/engines/scumm/script_v3.cpp
index e171dd9eb3..7d2efdb9a8 100644
--- a/engines/scumm/script_v3.cpp
+++ b/engines/scumm/script_v3.cpp
@@ -32,8 +32,10 @@ namespace Scumm {
void ScummEngine_v3::setupOpcodes() {
ScummEngine_v4::setupOpcodes();
- OPCODE(0x30, o3_setBoxFlags);
- OPCODE(0xb0, o3_setBoxFlags);
+ if (!(_game.id == GID_LOOM && _game.platform == Common::kPlatformPCEngine)) {
+ OPCODE(0x30, o3_setBoxFlags);
+ OPCODE(0xb0, o3_setBoxFlags);
+ }
}
void ScummEngine_v3::o3_setBoxFlags() {