diff options
Diffstat (limited to 'src/devices/machine/s2636.cpp')
-rw-r--r-- | src/devices/machine/s2636.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/s2636.cpp b/src/devices/machine/s2636.cpp index 569f9d12599..97facc8e66a 100644 --- a/src/devices/machine/s2636.cpp +++ b/src/devices/machine/s2636.cpp @@ -414,7 +414,7 @@ READ8_MEMBER( s2636_device::read_data ) { case REG_COL_BG_CMPL: case REG_VBL_COL_OBJ: - if (!space.debugger_access()) + if (!machine().debugger_access()) m_registers[offset] = 0x00; // collision/completion/VRESET flags reset on read break; } |