diff options
Diffstat (limited to 'src/devices/sound/namco_163.cpp')
-rw-r--r-- | src/devices/sound/namco_163.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/sound/namco_163.cpp b/src/devices/sound/namco_163.cpp index 01c6b32748b..c26a1f1c638 100644 --- a/src/devices/sound/namco_163.cpp +++ b/src/devices/sound/namco_163.cpp @@ -138,7 +138,7 @@ void namco_163_sound_device::data_w(u8 data) u8 namco_163_sound_device::data_r() { const u8 val = m_ram[m_addr]; - if ((!machine().side_effects_disabled()) && m_inc) + if (!machine().side_effects_disabled() && m_inc) m_addr = (m_addr + 1) & 0x7f; return val; |