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.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/bombjack.cpp b/src/mame/drivers/bombjack.cpp
index f9874712a8b..c884dc89d10 100644
--- a/src/mame/drivers/bombjack.cpp
+++ b/src/mame/drivers/bombjack.cpp
@@ -110,9 +110,9 @@ 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);
+ uint8_t res = m_soundlatch->read();
if (!machine().side_effects_disabled())
- m_soundlatch->clear_w(space, 0, 0);
+ m_soundlatch->clear_w();
return res;
}