summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/3do.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/3do.cpp')
-rw-r--r--src/mame/machine/3do.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/3do.cpp b/src/mame/machine/3do.cpp
index f2f35b21034..ea3a5a1fa96 100644
--- a/src/mame/machine/3do.cpp
+++ b/src/mame/machine/3do.cpp
@@ -657,7 +657,7 @@ WRITE32_MEMBER(_3do_state::_3do_madam_w){
READ32_MEMBER(_3do_state::_3do_clio_r)
{
- if (!machine().side_effect_disabled())
+ if (!machine().side_effects_disabled())
{
if(offset != 0x200/4 && offset != 0x40/4 && offset != 0x44/4 && offset != 0x48/4 && offset != 0x4c/4 &&
offset != 0x118/4 && offset != 0x11c/4)
@@ -775,7 +775,7 @@ READ32_MEMBER(_3do_state::_3do_clio_r)
return m_clio.uncle_rom;
default:
- if (!machine().side_effect_disabled())
+ if (!machine().side_effects_disabled())
logerror( "%08X: unhandled CLIO read offset = %08X\n", m_maincpu->pc(), offset * 4 );
break;
}