summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/msx_cart/holy_quran.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/msx_cart/holy_quran.cpp')
-rw-r--r--src/devices/bus/msx_cart/holy_quran.cpp2
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 c461b83ee16..4c44656a9e3 100644
--- a/src/devices/bus/msx_cart/holy_quran.cpp
+++ b/src/devices/bus/msx_cart/holy_quran.cpp
@@ -77,7 +77,7 @@ READ8_MEMBER(msx_cart_holy_quran_device::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]) && !machine().side_effect_disabled())
+ if (offset == ((m_rom[3] << 8) | m_rom[2]) && !machine().side_effects_disabled())
{
m_decrypt = true;
}