aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorJohannes Schickel2008-04-06 14:16:27 +0000
committerJohannes Schickel2008-04-06 14:16:27 +0000
commit1c8aa0c807ce13b7e6804f4ebd1fa0e7d42058ea (patch)
tree8fbbc43ee7544dbb1c9998d76869d2d969aa8c51 /engines
parent2755727249891afe297d8a921d69d408957de7d3 (diff)
downloadscummvm-rg350-1c8aa0c807ce13b7e6804f4ebd1fa0e7d42058ea.tar.gz
scummvm-rg350-1c8aa0c807ce13b7e6804f4ebd1fa0e7d42058ea.tar.bz2
scummvm-rg350-1c8aa0c807ce13b7e6804f4ebd1fa0e7d42058ea.zip
Set opcode 31 (o2_limitMouseRrange) to o2_dummy for now.
Also added a comment about that. svn-id: r31427
Diffstat (limited to 'engines')
-rw-r--r--engines/kyra/script_v2.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/kyra/script_v2.cpp b/engines/kyra/script_v2.cpp
index 1a381978f2..746f7b23e1 100644
--- a/engines/kyra/script_v2.cpp
+++ b/engines/kyra/script_v2.cpp
@@ -1843,7 +1843,8 @@ void KyraEngine_v2::setupOpcodeTable() {
Opcode(o2_addItemToInventory),
Opcode(o2_drawShape),
Opcode(o2_addItemToCurScene),
- OpcodeUnImpl(),
+ Opcode(o2_dummy), // the original used this opcode to limit the mouse range temporary,
+ // since that is of no use and not really important we just use a dummy here
// 0x20
Opcode(o2_checkForItem),
Opcode(o2_loadSoundFile),