Changed indentation to tabs

This commit is contained in:
Hector
2025-10-10 15:26:50 +01:00
parent 1aa3283d1b
commit 65acbe1788

View File

@@ -31,8 +31,8 @@ PointInRect :: proc "c" (p: Point, r: Rect) -> bool {
@(require_results)
PointInRectFloat :: proc "c" (p: FPoint, r: FRect) -> bool {
return ( (p.x >= r.x) && (p.x <= (r.x + r.w)) &&
(p.y >= r.y) && (p.y <= (r.y + r.h)) )
return ( (p.x >= r.x) && (p.x <= (r.x + r.w)) &&
(p.y >= r.y) && (p.y <= (r.y + r.h)) )
}
@(require_results)