diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-11-02 18:28:03 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-11-02 18:28:03 -0400 |
| commit | 68212636f523e060880c1e21f7ae9bc4abada571 (patch) | |
| tree | ab8f76e891915d246115e6678458885b000014c1 /balls.c | |
| parent | 99ea1bd1d3e0493c5bca3322886cef53bb113810 (diff) | |
| download | balls-68212636f523e060880c1e21f7ae9bc4abada571.zip | |
rename Rectangle->Rect for windows compatibility
Diffstat (limited to 'balls.c')
| -rw-r--r-- | balls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |