From 567e3863a3a0e6c510c13a02081c7886bbf50249 Mon Sep 17 00:00:00 2001 From: toaster Date: Wed, 9 Aug 2023 22:45:31 +0100 Subject: [PATCH] GP stats: Make columns alternate in darkness, rather than gradient --- src/k_menudraw.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/k_menudraw.c b/src/k_menudraw.c index b13027bc8..93b7473b9 100644 --- a/src/k_menudraw.c +++ b/src/k_menudraw.c @@ -6410,13 +6410,13 @@ static void M_DrawStatsGP(void) { if (j == KARTSPEED_EASY || !gamedata->everseenspecial) { - V_DrawFadeFill(x + 6, y + 1, width - (12 + 1), h, 0, 31, 5 + j); + V_DrawFadeFill(x + 6, y + 1, width - (12 + 1), h, 0, 31, 6 + (j & 1)*2); V_DrawCenteredThinString(x + 19 + 7, y - 10, highlightflags|V_FORCEUPPERCASE, gpdifficulty_cons_t[j].strvalue); x += (12 + 1); } else { - V_DrawFadeFill(x - 7, y + 1, width, h, 0, 31, 5 + j); + V_DrawFadeFill(x - 7, y + 1, width, h, 0, 31, 6 + (j & 1)*2); V_DrawCenteredThinString(x + 19, y - 10, highlightflags|V_FORCEUPPERCASE, gpdifficulty_cons_t[j].strvalue); } }