summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/machine/s2636.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2016-11-21 05:57:46 +1100
committer Vas Crabb <vas@vastheman.com>2016-11-21 05:57:46 +1100
commitc7352f5684c6dc3a4f5db3e3514e61646c061336 (patch)
tree538ecc7414c5eee71f36d3a90ccfc44695271a46 /src/devices/machine/s2636.cpp
parente4c856dd1ff81ed945c7edd96993f3d909be9ded (diff)
Revert "moved debugger_access() from address space to machine & removed the anti-patterns that updated cascading address spaces. [smf]"
This reverts commit 5f05fbf61348c65204fde1e2aeed72de4cb56593.
Diffstat (limited to 'src/devices/machine/s2636.cpp')
-rw-r--r--src/devices/machine/s2636.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/s2636.cpp b/src/devices/machine/s2636.cpp
index 97facc8e66a..569f9d12599 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 (!machine().debugger_access())
+ if (!space.debugger_access())
m_registers[offset] = 0x00; // collision/completion/VRESET flags reset on read
break;
}