summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/bombjack.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/bombjack.cpp')
-rw-r--r--src/mame/drivers/bombjack.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/bombjack.cpp b/src/mame/drivers/bombjack.cpp
index 54822afb7cb..77265b85100 100644
--- a/src/mame/drivers/bombjack.cpp
+++ b/src/mame/drivers/bombjack.cpp
@@ -111,7 +111,7 @@ READ8_MEMBER(bombjack_state::soundlatch_read_and_clear)
// An extra flip-flop is used to clear the LS273 after reading it through a LS245
// (this flip-flop is then cleared in sync with the sound CPU clock)
uint8_t res = m_soundlatch->read(space, 0);
- if (!machine().side_effect_disabled())
+ if (!machine().side_effects_disabled())
m_soundlatch->clear_w(space, 0, 0);
return res;
}