soundpong

Unnamed repository; edit this file 'description' to name the repository.
git clone git://git.nihaljere.xyz/soundpong
Log | Files | Refs

commit dd0eee29611c6c08413a6cd1459c2b28903e3b71
parent 0d683a0274f4701069a44daaed97cb41b5f2052e
Author: Nihal Jere <nihal@nihaljere.xyz>
Date:   Sat, 31 Jul 2021 17:18:24 -0500

ball pos is now float

Diffstat:
Mmain.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.c b/main.c @@ -20,7 +20,7 @@ struct { } dropper = { .x = 50, .y = 50 }; struct ball { - int x, y; + float x, y; float vx, vy; struct ball *next; struct ball *prev;