diff options
-rw-r--r-- | scumm/script_v5.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scumm/script_v5.cpp b/scumm/script_v5.cpp index aaa90270da..04a4a96bd7 100644 --- a/scumm/script_v5.cpp +++ b/scumm/script_v5.cpp @@ -1132,6 +1132,9 @@ void Scumm_v5::o5_getDist() { if (_gameId == GID_MONKEY2 && vm.slot[_currentScript].number == 40 && r < 60) r = 60; + if (_features & GF_AFTER_V2) + r /= 8; + setResult(r); } |