From 82f30f335eb937572d65fee62c932e4c23834fe1 Mon Sep 17 00:00:00 2001 From: AynRandDuran Date: Sun, 4 Jul 2021 23:50:22 -0400 Subject: [PATCH] small adjustments --- game.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game.cpp b/game.cpp index 3d8f693..56afccc 100644 --- a/game.cpp +++ b/game.cpp @@ -46,7 +46,7 @@ void die(){ continue; dead_ship[i].x = center.x; dead_ship[i].y = center.y; dead_ship[i].z = (360/SHIP_DEBRIS) * (i + 1); - dead_ship[i].w = 8; + dead_ship[i].w = 4; } } @@ -233,7 +233,7 @@ void explode_asteroid(Vector4* astr) { for (int a = 0; a < SHIP_DEBRIS; a++) { dead_astr[i][a].x = astr->x; dead_astr[i][a].y = astr->y; - dead_astr[i][a].z = (360/SHIP_DEBRIS) * a; + dead_astr[i][a].z = ((360/SHIP_DEBRIS) * a) + (360/(SHIP_DEBRIS*3)); dead_astr[i][a].w = 1; } break; -- 2.49.0