Hack: Turn on ignore walkboxes in V2 to stop intro freezing. Remove when we have V2 walkbox support (ugh...)

svn-id: r7388
This commit is contained in:
James Brown 2003-05-08 06:17:30 +00:00
parent f0f955ab15
commit 68f821c67d

View File

@ -836,7 +836,8 @@ void Scumm_v2::o2_walkActorTo() {
a = derefActorSafe(getVarOrDirectByte(0x80), "o2_walkActorTo");
x = getVarOrDirectByte(0x40);
y = getVarOrDirectByte(0x20);
a->startWalkActor(x, y, -1);
a->ignoreBoxes = true; // FIXME: Disabling walkboxes
a->startWalkActor(x, y, -1); // for now, just to debug the intro
}
void Scumm_v2::o2_putActor() {