summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/machine/mpu4.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/machine/mpu4.cpp')
-rw-r--r--src/mame/machine/mpu4.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/machine/mpu4.cpp b/src/mame/machine/mpu4.cpp
index bfcc9372b32..6e0dbfe9edd 100644
--- a/src/mame/machine/mpu4.cpp
+++ b/src/mame/machine/mpu4.cpp
@@ -2115,12 +2115,12 @@ READ8_MEMBER(mpu4_state::bwb_characteriser_r)
WRITE8_MEMBER(mpu4_state::mpu4_ym2413_w)
{
- if (m_ym2413) m_ym2413->write(space,offset,data);
+ if (m_ym2413) m_ym2413->write(offset,data);
}
READ8_MEMBER(mpu4_state::mpu4_ym2413_r)
{
-// if (m_ym2413) return m_ym2413->read(space,offset);
+// if (m_ym2413) return m_ym2413->read(offset);
return 0xff;
}