diff options
author | 2015-04-11 17:22:40 +1000 | |
---|---|---|
committer | 2015-04-11 17:22:40 +1000 | |
commit | edda146aa20d1cd9bd2ad0fb3ff0009e77a54cd1 (patch) | |
tree | bdb485564e0cd5f0a0b82644880cc99abd3d990c /src/emu/video | |
parent | 46d1592c64705f5b018851266c5df8c8c2f3055b (diff) |
Fix the fix - you can't comment out calls with side effects even if the return value is unused
Diffstat (limited to 'src/emu/video')
-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 d657ccc3ab6..baf215e89c7 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 { |