summaryrefslogtreecommitdiffstats
path: root/balls.c
diff options
context:
space:
mode:
authorSam Anthony <sam@samanthony.xyz>2024-10-30 15:33:24 -0400
committerSam Anthony <sam@samanthony.xyz>2024-10-30 15:33:24 -0400
commit27b33c92d5ce70a2d3af1f8e192bf204f86530a4 (patch)
tree081a42d15fd901d9f1fa4f1c54f1d4ea8dbf17e5 /balls.c
parent06c70ebee487f37cdbceba682578ae52062b1f6e (diff)
downloadballs-27b33c92d5ce70a2d3af1f8e192bf204f86530a4.zip
collideWalls after collideBalls
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 f244917..13c3ddd 100644
--- a/balls.c
+++ b/balls.c
@@ -394,8 +394,8 @@ display(void) {
int i;
move();
- collideWalls();
collideBalls();
+ collideWalls();
glClear(GL_COLOR_BUFFER_BIT |GL_DEPTH_BUFFER_BIT);