summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/zorba.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/zorba.cpp')
-rw-r--r--src/mame/drivers/zorba.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/zorba.cpp b/src/mame/drivers/zorba.cpp
index b51f91a665f..fd9ff169411 100644
--- a/src/mame/drivers/zorba.cpp
+++ b/src/mame/drivers/zorba.cpp
@@ -314,7 +314,7 @@ void zorba_state::machine_reset()
READ8_MEMBER( zorba_state::ram_r )
{
- if (!machine().side_effect_disabled())
+ if (!machine().side_effects_disabled())
m_read_bank->set_entry(0);
return 0;
}
@@ -326,7 +326,7 @@ WRITE8_MEMBER( zorba_state::ram_w )
READ8_MEMBER( zorba_state::rom_r )
{
- if (!machine().side_effect_disabled())
+ if (!machine().side_effects_disabled())
m_read_bank->set_entry(1);
return 0;
}