diff options
-rw-r--r-- | scumm/script_v6.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/scumm/script_v6.cpp b/scumm/script_v6.cpp index ceab5368d8..ebd29c8aa9 100644 --- a/scumm/script_v6.cpp +++ b/scumm/script_v6.cpp @@ -890,6 +890,11 @@ void Scumm_v6::o6_setState() { int state = pop(); int obj = pop(); + if ((_features & GF_HUMONGOUS) && (state & 0x8000)) { + state = state & 0x7F00; + putState(obj, state); + return; + } // debug(1, "setState(%d,%d)", obj, state); putState(obj, state); |