diff options
Diffstat (limited to 'src/devices/bus/isa/sb16.cpp')
-rw-r--r-- | src/devices/bus/isa/sb16.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/isa/sb16.cpp b/src/devices/bus/isa/sb16.cpp index 4a5f7f1df5d..b1ccd4cfd84 100644 --- a/src/devices/bus/isa/sb16.cpp +++ b/src/devices/bus/isa/sb16.cpp @@ -12,7 +12,7 @@ const device_type ISA16_SB16 = &device_creator<sb16_lle_device>; READ8_MEMBER( sb16_lle_device::dsp_data_r ) { - if(!machine().debugger_access()) + if(!space.debugger_access()) m_data_in = false; return m_in_byte; |