mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Doesn't matter.
This commit is contained in:
parent
89a58888b8
commit
a1fbf69fdb
1 changed files with 1 additions and 1 deletions
|
|
@ -721,7 +721,7 @@ static void AM_drawPixel(INT32 xx, INT32 yy, INT32 cc)
|
||||||
UINT8 *dest = screens[0];
|
UINT8 *dest = screens[0];
|
||||||
if (xx < 0 || yy < 0 || xx >= vid.width || yy >= vid.height)
|
if (xx < 0 || yy < 0 || xx >= vid.width || yy >= vid.height)
|
||||||
return; // off the screen
|
return; // off the screen
|
||||||
dest[(yy*vid.rowbytes) + (xx * vid.bpp)] = (cc & 0xFF);
|
dest[(yy*vid.width) + xx] = cc;
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue