mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Do not ignore colorization for index 120 anymore
This commit is contained in:
parent
da7e79ac83
commit
cff9ba5090
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
// next, for every colour in the palette, choose the transcolor that has the closest brightness
|
||||||
for (i = 0; i < NUM_PALETTE_ENTRIES; i++)
|
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;
|
dest_colormap[i] = (UINT8)i;
|
||||||
continue;
|
continue;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue