Fix regressions.

svn-id: r11615
This commit is contained in:
Travis Howell 2003-12-13 15:41:32 +00:00
parent c976e7fda0
commit 9b99adf7fa

View file

@ -1079,7 +1079,7 @@ void ScummEngine_v2::o2_walkActorTo() {
a = derefActor(getVarOrDirectByte(PARAM_1), "o2_walkActorTo");
x = getVarOrDirectByte(PARAM_2) * 8;
y = getVarOrDirectByte(PARAM_1) * 2;
y = getVarOrDirectByte(PARAM_3) * 2;
a->startWalkActor(x, y, -1);
}
@ -1092,7 +1092,7 @@ void ScummEngine_v2::o2_putActor() {
a = derefActor(act, "o2_putActor");
x = getVarOrDirectByte(PARAM_2) * 8;
y = getVarOrDirectByte(PARAM_1) * 2;
y = getVarOrDirectByte(PARAM_3) * 2;
a->putActor(x, y, a->room);
}