mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-27 12:31:54 +00:00
Merge branch 'invertfix' into 'master'
Fixed the Encore mode invert wipe. See merge request KartKrew/Kart!379
This commit is contained in:
commit
4da5ed8999
1 changed files with 3 additions and 3 deletions
|
|
@ -1517,9 +1517,9 @@ void V_EncoreInvertScreen(void)
|
||||||
for (; buf < deststop; ++buf)
|
for (; buf < deststop; ++buf)
|
||||||
{
|
{
|
||||||
*buf = NearestColor(
|
*buf = NearestColor(
|
||||||
256 - pLocalPalette[*buf].s.red,
|
255 - pLocalPalette[*buf].s.red,
|
||||||
256 - pLocalPalette[*buf].s.green,
|
255 - pLocalPalette[*buf].s.green,
|
||||||
256 - pLocalPalette[*buf].s.blue
|
255 - pLocalPalette[*buf].s.blue
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue