summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/lazercmd.cpp
diff options
context:
space:
mode:
author Olivier Galibert <galibert@pobox.com>2016-07-09 13:18:43 +0200
committer GitHub <noreply@github.com>2016-07-09 13:18:43 +0200
commitc8654013521c1639430c966adb7caeb8b5b97505 (patch)
tree6763ed3ec2e0064d2365351166af2697c8a079f0 /src/mame/drivers/lazercmd.cpp
parentd67f2e54ff11cca83b11466f7ebd7d5a5d9b8dc1 (diff)
parente720f794816677762e1d35864d6946499faab520 (diff)
Merge pull request #1066 from ajrhacker/irq_cleanup
Further IRQ passthrough cleanup
Diffstat (limited to 'src/mame/drivers/lazercmd.cpp')
-rw-r--r--src/mame/drivers/lazercmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/lazercmd.cpp b/src/mame/drivers/lazercmd.cpp
index f6b6881e0a1..f78dd9488cd 100644
--- a/src/mame/drivers/lazercmd.cpp
+++ b/src/mame/drivers/lazercmd.cpp
@@ -259,7 +259,7 @@ TIMER_DEVICE_CALLBACK_MEMBER(lazercmd_state::lazercmd_timer)
{
m_timer_count = 0;
m_sense_state ^= 1;
- m_maincpu->write_sense(m_sense_state ? ASSERT_LINE : CLEAR_LINE);
+ m_maincpu->set_input_line(S2650_SENSE_LINE, m_sense_state ? ASSERT_LINE : CLEAR_LINE);
}
}