From 68212636f523e060880c1e21f7ae9bc4abada571 Mon Sep 17 00:00:00 2001 From: Sam Anthony Date: Sat, 2 Nov 2024 18:28:03 -0400 Subject: rename Rectangle->Rect for windows compatibility --- balls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'balls.c') diff --git a/balls.c b/balls.c index a4c3fb2..2a7a413 100644 --- a/balls.c +++ b/balls.c @@ -33,7 +33,7 @@ enum { CIRCLE_POINTS = 32+2, /* +2 for center point and last point which overlaps with first point. */ }; -const Rectangle bounds = { {-1.0, -1.0}, {1.0, 1.0} }; +const Rect bounds = { {-1.0, -1.0}, {1.0, 1.0} }; void initGL(int argc, char *argv[]); void initCL(void); -- cgit v1.2.3