Skip to content
Snippets Groups Projects
Commit dd8166ca authored by Lactozilla's avatar Lactozilla :speech_balloon:
Browse files

Doesn't matter.

parent ba6018ae
No related branches found
No related tags found
1 merge request!735Automap fixes
......@@ -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;
}
//
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment