Strip unneeded semicolons from vendor library

This commit is contained in:
gingerBill
2021-08-31 22:26:58 +01:00
parent 251da264ed
commit b450a853d5
46 changed files with 7234 additions and 7234 deletions
+3 -3
View File
@@ -29,15 +29,15 @@ FRect :: struct {
}
PointInRect :: proc(p, r: ^Rect) -> bool {
return bool((p.x >= r.x) && (p.x < (r.x + r.w)) && (p.y >= r.y) && (p.y < (r.y + r.h)));
return bool((p.x >= r.x) && (p.x < (r.x + r.w)) && (p.y >= r.y) && (p.y < (r.y + r.h)))
}
RectEmpty :: proc(r: ^Rect) -> bool {
return bool(r == nil|| r.w <= 0 || r.h <= 0);
return bool(r == nil|| r.w <= 0 || r.h <= 0)
}
RectEquals :: proc(a, b: ^Rect) -> bool {
return a != nil && b != nil && a^ == b^;
return a != nil && b != nil && a^ == b^
}
@(default_calling_convention="c", link_prefix="SDL_")