diff options
author | Sven Hesse | 2008-04-30 18:07:22 +0000 |
---|---|---|
committer | Sven Hesse | 2008-04-30 18:07:22 +0000 |
commit | 4d67fb84e59eb0515c3c8af004effe58fd20ff93 (patch) | |
tree | 9fa6a263da56371347b81c3d20595f7066a922fc /engines | |
parent | e5dc44507c92bc698e306e7d83f1f3796895c81f (diff) | |
download | scummvm-rg350-4d67fb84e59eb0515c3c8af004effe58fd20ff93.tar.gz scummvm-rg350-4d67fb84e59eb0515c3c8af004effe58fd20ff93.tar.bz2 scummvm-rg350-4d67fb84e59eb0515c3c8af004effe58fd20ff93.zip |
Reverting accidently made revert of the gob3 walk fix
svn-id: r31791
Diffstat (limited to 'engines')
-rw-r--r-- | engines/gob/goblin_v2.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/gob/goblin_v2.cpp b/engines/gob/goblin_v2.cpp index 8af4015c1b..c9e155ad08 100644 --- a/engines/gob/goblin_v2.cpp +++ b/engines/gob/goblin_v2.cpp @@ -266,7 +266,7 @@ void Goblin_v2::movePathFind(Mult::Mult_Object *obj, Gob_Object *gobDesc, int16 if (_vm->_map->_screenWidth == 640) { if (_vm->_map->getPass(obj->goblinX, obj->goblinY) == 10) animData->nextState = 41; - if (_vm->_map->getPass(obj->goblinX - 1, obj->goblinY) != 10) + if (_vm->_map->getPass(obj->goblinX - 1, obj->goblinY + 2) != 10) animData->nextState = 7; } break; |