diff options
Diffstat (limited to 'src/devices/bus/msx_cart/holy_quran.cpp')
-rw-r--r-- | src/devices/bus/msx_cart/holy_quran.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/msx_cart/holy_quran.cpp b/src/devices/bus/msx_cart/holy_quran.cpp index 3c5ae04dc0c..e06b0a2bb17 100644 --- a/src/devices/bus/msx_cart/holy_quran.cpp +++ b/src/devices/bus/msx_cart/holy_quran.cpp @@ -81,7 +81,7 @@ READ8_MEMBER(msx_cart_holy_quran::read_cart) // The decryption should actually start working after the first M1 cycle executing something // from the cartridge. - if (offset == ((m_rom[3] << 8) | m_rom[2]) && !space.debugger_access()) + if (offset == ((m_rom[3] << 8) | m_rom[2]) && !machine().debugger_access()) { m_decrypt = true; } |