Fixed compile-breaking error in vid_svga_render.c.

This commit is contained in:
OBattler
2016-10-08 05:14:49 +02:00
parent 159882cec6
commit 5e8fa29e1c

View File

@@ -740,7 +740,7 @@ void svga_render_24bpp_highres(svga_t *svga)
for (x = 0; x <= svga->hdisp; x += 4)
{
uint32_t dat = *(uint32_t *)(&svga->vram[svga->ma, svga]);
uint32_t dat = *(uint32_t *)(&svga->vram[svga->ma]);
p[x] = dat & 0xffffff;
dat = *(uint32_t *)(&svga->vram[svga_mask_addr(svga->ma + 3, svga)]);