From cff9ba50902c03045bbe39befc80cc251a37b181 Mon Sep 17 00:00:00 2001 From: TehRealSalt Date: Sun, 12 May 2019 21:14:20 -0400 Subject: [PATCH] Do not ignore colorization for index 120 anymore --- 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 c96ad9c18..683efa8cb 100644 --- a/src/k_kart.c +++ b/src/k_kart.c @@ -436,7 +436,7 @@ void K_RainbowColormap(UINT8 *dest_colormap, UINT8 skincolor) // next, for every colour in the palette, choose the transcolor that has the closest brightness for (i = 0; i < NUM_PALETTE_ENTRIES; i++) { - if (i == 0 || i == 31 || i == 120) // pure black and pure white don't change + if (i == 0 || i == 31) // pure black and pure white don't change { dest_colormap[i] = (UINT8)i; continue;