From 3584aace75abb69435e3bdcdadc284f93af85e55 Mon Sep 17 00:00:00 2001 From: Thomas Date: Sun, 1 Mar 2026 18:12:23 +0000 Subject: [PATCH] Adjust spacecraft thruster particle origin up and right by 8px --- src/game/spacecraft.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/game/spacecraft.c b/src/game/spacecraft.c index 8abf240..518e561 100644 --- a/src/game/spacecraft.c +++ b/src/game/spacecraft.c @@ -84,8 +84,8 @@ static void emit_thruster_particles(Vec2 ship_pos, float intensity) { /* Particles emit from the left (rear) center of the ship */ Vec2 origin = vec2( - ship_pos.x + 8.0f, - ship_pos.y + SPACECRAFT_HEIGHT * 0.5f + ship_pos.x + 16.0f, + ship_pos.y + SPACECRAFT_HEIGHT * 0.5f - 8.0f ); int count = (int)(intensity * 3.0f);