diff options
author | 2015-04-11 09:18:42 +0200 | |
---|---|---|
committer | 2015-04-11 09:18:42 +0200 | |
commit | 46d1592c64705f5b018851266c5df8c8c2f3055b (patch) | |
tree | 2779e4d9be1897c4d0ae17fe700c74fdef85c796 /src | |
parent | fa66b1dcab0a3c3bfe80904cb5e7a9d36f4d2564 (diff) |
fixed compiling with old Apple GCC. nw.
Diffstat (limited to 'src')
-rw-r--r-- | src/emu/video/pc_vga.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video/pc_vga.c b/src/emu/video/pc_vga.c index 83550e4e722..d657ccc3ab6 100644 --- a/src/emu/video/pc_vga.c +++ b/src/emu/video/pc_vga.c @@ -1149,7 +1149,7 @@ UINT32 cirrus_vga_device::screen_update(screen_device &screen, bitmap_rgb32 &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); - UINT8 cur_mode = pc_vga_choosevideomode(); + //UINT8 cur_mode = pc_vga_choosevideomode(); if(m_cursor_attr & 0x01) // hardware cursor enabled { |