Compile fix (nw)

This commit is contained in:
Ivan Vangelista 2015-04-11 07:25:48 +02:00
parent ac1598dfa0
commit 1f98da4cd4

View file

@ -1145,12 +1145,11 @@ UINT32 s3_vga_device::screen_update(screen_device &screen, bitmap_rgb32 &bitmap,
UINT32 cirrus_vga_device::screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect)
{
UINT8 cur_mode = 0;
int x,y,bit;
UINT32 ptr = (vga.svga_intf.vram_size - 0x4000); // cursor patterns are stored in the last 16kB of VRAM
svga_device::screen_update(screen, bitmap, cliprect);
cur_mode = pc_vga_choosevideomode();
UINT8 cur_mode = pc_vga_choosevideomode();
if(m_cursor_attr & 0x01) // hardware cursor enabled
{