diff options
author | Travis Howell | 2003-12-30 07:34:15 +0000 |
---|---|---|
committer | Travis Howell | 2003-12-30 07:34:15 +0000 |
commit | 195fcb0f465f92ea40f6fd4145e04c23622fb119 (patch) | |
tree | a278991af95cdf2dd963e7b3927edeea6de3cb1b /scumm | |
parent | 6d8d7518e94fb0c9fe133c66bb549d477c0c457d (diff) | |
download | scummvm-rg350-195fcb0f465f92ea40f6fd4145e04c23622fb119.tar.gz scummvm-rg350-195fcb0f465f92ea40f6fd4145e04c23622fb119.tar.bz2 scummvm-rg350-195fcb0f465f92ea40f6fd4145e04c23622fb119.zip |
Add missing case for HE games.
svn-id: r12030
Diffstat (limited to 'scumm')
-rw-r--r-- | scumm/script_v6.cpp | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index 6856348b8e..ba2aff5f3c 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -1875,10 +1875,8 @@ void ScummEngine_v6::o6_verbOps() { vs->curmode = 0; break; case 131: // SO_VERB_DELETE - if (_features & GF_HUMONGOUS) { - // delete verb supposedly... - pop(); - } + if (_features & GF_HUMONGOUS) + slot = getVerbSlot(pop(), 0); killVerb(slot); break; case 132: // SO_VERB_NEW @@ -2946,7 +2944,7 @@ void ScummEngine_v6::o6_pickOneOfDefault() { void ScummEngine_v6::o6_stampObject() { int object, x, y, state; - // dummy opcode in the tentacle + // dummy opcode in tentacle if (_gameId == GID_TENTACLE) return; |