summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/tms5220.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/tms5220.cpp')
-rw-r--r--src/devices/sound/tms5220.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/sound/tms5220.cpp b/src/devices/sound/tms5220.cpp
index a8955937fd1..b9a45cabaa4 100644
--- a/src/devices/sound/tms5220.cpp
+++ b/src/devices/sound/tms5220.cpp
@@ -2012,7 +2012,7 @@ WRITE8_MEMBER( tms5220_device::data_w )
void tms5220_device::data_w(uint8_t data)
{
// prevent debugger from changing the internal state
- if (machine().side_effect_disabled()) return;
+ if (machine().side_effects_disabled()) return;
#ifdef DEBUG_RS_WS
logerror("tms5220_data_w: data %02x\n", data);
@@ -2050,7 +2050,7 @@ READ8_MEMBER( tms5220_device::status_r )
uint8_t tms5220_device::status_r()
{
// prevent debugger from changing the internal state
- if (machine().side_effect_disabled()) return 0;
+ if (machine().side_effects_disabled()) return 0;
if (!m_true_timing)
{