Doesn't matter.

This commit is contained in:
Jaime Passos 2020-01-26 22:57:14 -03:00
parent ba6018aea4
commit dd8166ca5f
1 changed files with 1 additions and 1 deletions

View File

@ -721,7 +721,7 @@ static void AM_drawPixel(INT32 xx, INT32 yy, INT32 cc)
UINT8 *dest = screens[0];
if (xx < 0 || yy < 0 || xx >= vid.width || yy >= vid.height)
return; // off the screen
dest[(yy*vid.rowbytes) + (xx * vid.bpp)] = (cc & 0xFF);
dest[(yy*vid.width) + xx] = cc;
}
//