mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Compile fix (nw)
This commit is contained in:
parent
ac1598dfa0
commit
1f98da4cd4
1 changed files with 1 additions and 2 deletions
|
@ -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
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue