diff options
Diffstat (limited to 'src/devices/bus/c64/currah_speech.cpp')
-rw-r--r-- | src/devices/bus/c64/currah_speech.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/c64/currah_speech.cpp b/src/devices/bus/c64/currah_speech.cpp index 1c47523f568..ffee35fc9c0 100644 --- a/src/devices/bus/c64/currah_speech.cpp +++ b/src/devices/bus/c64/currah_speech.cpp @@ -212,7 +212,7 @@ uint8_t c64_currah_speech_cartridge_device::c64_cd_r(address_space &space, offs_ data = m_nsp->sby_r() << 7; } - if (!machine().debugger_access() && (offset == 0xa7f0)) + if (!space.debugger_access() && (offset == 0xa7f0)) { m_game = !m_game; m_exrom = !m_exrom; |