Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion flixel/util/FlxCollision.hx
Original file line number Diff line number Diff line change
Expand Up @@ -366,7 +366,7 @@ class FlxCollision
* Only returned if the line enters the rect.
* @return The point of exit of the line from the rect, if possible.
*/
public static inline function calcRectExit(rect, start, end, result)
public static inline function calcRectExit(rect, start, end, ?result)
{
return calcRectEntry(rect, end, start, result);
}
Expand Down