From 4ecc378bb6e67a603560dad4aaa331d6e11d9558 Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 6 Nov 2023 19:27:24 +0000 Subject: [PATCH] Make weakest Trick Indicator colour white instead of grey More opaque, due to additive behaviour --- src/k_kart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/k_kart.c b/src/k_kart.c index 4b0238114..78b7f32e8 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -6371,7 +6371,7 @@ void K_DoPogoSpring(mobj_t *mo, fixed_t vertispeed, UINT8 sound) trickIndicator->rollangle = 0; static const skincolornum_t trick_colors[] = { - SKINCOLOR_GREY, // trickPanel == 1 + SKINCOLOR_WHITE, // trickPanel == 1 -- was SKINCOLOR_GREY SKINCOLOR_TAN, SKINCOLOR_YELLOW, // trickPanel == 2 SKINCOLOR_TANGERINE,