diff options
author | Vincent Hamm | 2002-04-04 19:36:07 +0000 |
---|---|---|
committer | Vincent Hamm | 2002-04-04 19:36:07 +0000 |
commit | 796110715688a8d487b8380e9b115a3b13d1830d (patch) | |
tree | 84e1dfc4fc30c0f9419eb27436c2559281a90072 | |
parent | a7897157f5cc379a566d5cda27b7f39ea96c2682 (diff) | |
download | scummvm-rg350-796110715688a8d487b8380e9b115a3b13d1830d.tar.gz scummvm-rg350-796110715688a8d487b8380e9b115a3b13d1830d.tar.bz2 scummvm-rg350-796110715688a8d487b8380e9b115a3b13d1830d.zip |
Removed ugly object fix that was implemented while the flags were buggy. Now you can exit the village in LoomCd
svn-id: r3860
-rw-r--r-- | script_v1.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/script_v1.cpp b/script_v1.cpp index 1236c723ce..0af6c42b8d 100644 --- a/script_v1.cpp +++ b/script_v1.cpp @@ -2393,8 +2393,7 @@ void Scumm::o5_walkActorToObject() { obj = getVarOrDirectWord(0x40); if (whereIsObject(obj)!=WIO_NOT_FOUND) { getObjectXYPos(obj); - if(_xPos !=0 && _yPos !=0) // fix while the early objects flags arent correct - startWalkActor(a, _xPos, _yPos, _dir); + startWalkActor(a, _xPos, _yPos, _dir); } } |