diff options
Diffstat (limited to 'src/devices/video/pc_vga.cpp')
-rw-r--r-- | src/devices/video/pc_vga.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/pc_vga.cpp b/src/devices/video/pc_vga.cpp index 4e31bf99514..c9a1a0dce0d 100644 --- a/src/devices/video/pc_vga.cpp +++ b/src/devices/video/pc_vga.cpp @@ -1986,7 +1986,7 @@ READ8_MEMBER(vga_device::mem_r) if(vga.sequencer.data[4] & 4) { int data; - if (!space.debugger_access()) + if (!machine().debugger_access()) { vga.gc.latch[0]=vga.memory[(offset)]; vga.gc.latch[1]=vga.memory[(offset)+0x10000]; |