summaryrefslogtreecommitdiffstats
path: root/balls.c
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2024-11-02 17:01:53 -0400
committerSam Anthony <sam@samanthony.xyz>2024-11-02 17:01:53 -0400
commit99ea1bd1d3e0493c5bca3322886cef53bb113810 (patch)
treee28da4eec7cccc90c1fa903f9c82ffec69e202b2 /balls.c
parent11ca9986316d47f179bac21b5082880a3f517ba6 (diff)
downloadballs-99ea1bd1d3e0493c5bca3322886cef53bb113810.zip
use size_t for index
Diffstat (limited to 'balls.c')
-rw-r--r--balls.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/balls.c b/balls.c
index 492fc27..a4c3fb2 100644
--- a/balls.c
+++ b/balls.c
@@ -613,7 +613,7 @@ frameCount(void) {
void
drawString(const char *str) {
- int i, n;
+ size_t i, n;
glColor3f(0, 1, 0);
glRasterPos2f(0.5, 0.5);