summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2022-03-21 08:04:31 +1100
committer Vas Crabb <vas@vastheman.com>2022-03-21 08:04:31 +1100
commit590a15eb3ee076b16bfddc8d71bcab104e6a2dee (patch)
treedb23d53d7967602a0a22f1f000f18cd266161b0d /src/devices/sound
parente2769abca916da18c114ee9db3c5dc44f682eded (diff)
Cleaned up a few more slot machine layouts, fixed editing error in m5bbro.lay.
Diffstat (limited to 'src/devices/sound')
-rw-r--r--src/devices/sound/namco_163.cpp2
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;