From 3d6751cd15f2e7d609a2ab6a42b4f35b4defc6b5 Mon Sep 17 00:00:00 2001 From: Antonio Carzaniga Date: Fri, 3 Dec 2021 15:59:29 +0100 Subject: [PATCH] (spaceship_init_state) larger, more visible spaceship (default radius). --- balls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/balls.c b/balls.c index 4a3bb88..d065530 100644 --- a/balls.c +++ b/balls.c @@ -52,7 +52,7 @@ int spaceship_thrust_init = 50; void spaceship_init_state () { spaceship.x = width/2; spaceship.y = height/2; - spaceship.radius = 15; + spaceship.radius = 30; spaceship.v_x = 0; spaceship.v_y = 0; spaceship.angle = 0;