ASYLUM: Fixed incorrect string format

This commit is contained in:
Alexandre Fontoura 2015-04-08 19:40:45 +01:00 committed by Eugene Sandulenko
parent 52fe2f8455
commit 42e09f359b
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -748,7 +748,7 @@ IMPLEMENT_OPCODE(JumpIfActorCoordinates)
// actor->canMoveCheckActors (called from canMove) seems to be the cause of the issue
// this script fails because the position is never met for few pixels (3 to 5 pixels)
// usually the X coordinate but sometimes also happens with the Y coordinate
debugC(kDebugLevelScripts, "COMMENTED JumpIfActorCoordinates %d x: %d y: %d",
debugC(kDebugLevelScripts, "COMMENTED JumpIfActorCoordinates x: %d y: %d",
(actor->getPoint1()->x + actor->getPoint2()->x),
(actor->getPoint1()->y + actor->getPoint2()->y));