mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-11 16:16:39 +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)
|
||||
{
|
||||
*buf = NearestColor(
|
||||
256 - pLocalPalette[*buf].s.red,
|
||||
256 - pLocalPalette[*buf].s.green,
|
||||
256 - pLocalPalette[*buf].s.blue
|
||||
255 - pLocalPalette[*buf].s.red,
|
||||
255 - pLocalPalette[*buf].s.green,
|
||||
255 - pLocalPalette[*buf].s.blue
|
||||
);
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue