summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/a2600.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/a2600.cpp')
-rw-r--r--src/mame/drivers/a2600.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/a2600.cpp b/src/mame/drivers/a2600.cpp
index 0c16a985bde..15b1cd559ae 100644
--- a/src/mame/drivers/a2600.cpp
+++ b/src/mame/drivers/a2600.cpp
@@ -43,7 +43,7 @@ ADDRESS_MAP_END
READ8_MEMBER(a2600_state::cart_over_all_r)
{
- if (!machine().side_effect_disabled())
+ if (!machine().side_effects_disabled())
m_cart->write_bank(space, offset, 0);
int masked_offset = offset &~ 0x0d00;
@@ -265,7 +265,7 @@ WRITE16_MEMBER(a2600_base_state::a2600_tia_vsync_callback_pal)
// TODO: is this the correct behavior for the real hardware?!?
READ8_MEMBER(a2600_state::cart_over_riot_r)
{
- if (!machine().side_effect_disabled())
+ if (!machine().side_effects_disabled())
m_cart->write_bank(space, offset, 0);
return m_riot_ram[0x20 + offset];
}