diff --git a/flixel/math/FlxPoint.hx b/flixel/math/FlxPoint.hx index 43b36e1824..08067efef4 100644 --- a/flixel/math/FlxPoint.hx +++ b/flixel/math/FlxPoint.hx @@ -697,8 +697,8 @@ class FlxBasePoint implements IFlxPooled */ public inline function subtractFromFlash(p:Point):Point { - p.x = p.x + x; - p.y = p.y + y; + p.x = p.x - x; + p.y = p.y - y; return p; }