diff options
Diffstat (limited to 'src/devices/bus/ti99_peb/hsgpl.cpp')
-rw-r--r-- | src/devices/bus/ti99_peb/hsgpl.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/ti99_peb/hsgpl.cpp b/src/devices/bus/ti99_peb/hsgpl.cpp index 45a57953e9e..2602df19f36 100644 --- a/src/devices/bus/ti99_peb/hsgpl.cpp +++ b/src/devices/bus/ti99_peb/hsgpl.cpp @@ -341,7 +341,7 @@ void snug_high_speed_gpl_device::cartspace_readz(address_space& space, offs_t of */ void snug_high_speed_gpl_device::grom_readz(address_space& space, offs_t offset, uint8_t* value, uint8_t mem_mask) { - if (machine().debugger_access()) return; + if (space.debugger_access()) return; //activedevice_adjust_icount(-4); @@ -527,7 +527,7 @@ void snug_high_speed_gpl_device::cartspace_write(address_space& space, offs_t of */ void snug_high_speed_gpl_device::grom_write(address_space& space, offs_t offset, uint8_t data, uint8_t mem_mask) { - if (machine().debugger_access()) return; + if (space.debugger_access()) return; //activedevice_adjust_icount(-4); |