v2 fix for o5_getDist (thx segra)

svn-id: r7845
This commit is contained in:
Max Horn 2003-05-23 01:33:43 +00:00
parent 1740bfcee3
commit cafb78a83c

View File

@ -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);
}