From 0f75049222798e1bfee7c5bff80bee6a0b7fdd2c Mon Sep 17 00:00:00 2001 From: rodri Date: Thu, 23 Feb 2023 20:15:05 +0000 Subject: made adjustments to the particles's thrust and player input processing. --- universe.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'universe.c') diff --git a/universe.c b/universe.c index bce345c..cf310ef 100644 --- a/universe.c +++ b/universe.c @@ -48,7 +48,7 @@ ship_fire(Ship *s) 0, 0, 1, }; - bv = mulpt2(xform(Vec2(1,0), R), THRUST); + bv = mulpt2(xform(Vec2(1,0), R), 10*THRUST); for(i = 0; i < nelem(s->rounds); i++) if(!s->rounds[i].fired){ -- cgit v1.2.3