Index: script_v2.cpp =================================================================== RCS file: /cvsroot/scummvm/scummvm/script_v2.cpp,v retrieving revision 1.79 diff -u -r1.79 script_v2.cpp --- script_v2.cpp 28 Jul 2002 01:40:24 -0000 1.79 +++ script_v2.cpp 4 Aug 2002 02:27:29 -0000 @@ -1355,12 +1355,16 @@ dist = a2->scalex * a2->width / 0xFF; dist += dist >> 1; } + x = a2->x; - if (x < a->x) - x += dist; - else - x -= dist; - a->startWalkActor(x, a2->y, -1); + + if (x != 0) { + if (x < a->x) + x += dist; + else + x -= dist; + a->startWalkActor(x, a2->y, -1); + } } }