aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/inter_v6.cpp
diff options
context:
space:
mode:
authorSven Hesse2009-07-05 19:56:40 +0000
committerSven Hesse2009-07-05 19:56:40 +0000
commitaeb020602a6f89a5cbc5af66ded393fe8da61212 (patch)
treec99e11a61da4be1deb0469956c0a4ebb73ac9a30 /engines/gob/inter_v6.cpp
parenta7ab6c5e92ccf774930846144cc5a272d7ce1542 (diff)
downloadscummvm-rg350-aeb020602a6f89a5cbc5af66ded393fe8da61212.tar.gz
scummvm-rg350-aeb020602a6f89a5cbc5af66ded393fe8da61212.tar.bz2
scummvm-rg350-aeb020602a6f89a5cbc5af66ded393fe8da61212.zip
More state-related encapsulation
svn-id: r42144
Diffstat (limited to 'engines/gob/inter_v6.cpp')
-rw-r--r--engines/gob/inter_v6.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/gob/inter_v6.cpp b/engines/gob/inter_v6.cpp
index 3c71b3cd91..15e2cc9481 100644
--- a/engines/gob/inter_v6.cpp
+++ b/engines/gob/inter_v6.cpp
@@ -369,11 +369,11 @@ bool Inter_v6::o6_freeCollision(OpFuncParams &params) {
_vm->_game->_hotspots->push(2);
break;
case 3:
- _vm->_game->_hotspots->removeState(0xD000);
- _vm->_game->_hotspots->removeState(0x4000);
+ _vm->_game->_hotspots->removeState(0xD);
+ _vm->_game->_hotspots->removeState(0x4);
break;
case 4:
- _vm->_game->_hotspots->removeState(0xE000);
+ _vm->_game->_hotspots->removeState(0xE);
break;
default:
_vm->_game->_hotspots->remove(0xE000 + id);