diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2024-11-02 17:01:53 -0400 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2024-11-02 17:01:53 -0400 |
| commit | 99ea1bd1d3e0493c5bca3322886cef53bb113810 (patch) | |
| tree | e28da4eec7cccc90c1fa903f9c82ffec69e202b2 | |
| parent | 11ca9986316d47f179bac21b5082880a3f517ba6 (diff) | |
| download | balls-99ea1bd1d3e0493c5bca3322886cef53bb113810.zip | |
use size_t for index
| -rw-r--r-- | balls.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |