summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/beezer.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/beezer.c')
-rw-r--r--src/mame/video/beezer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/beezer.c b/src/mame/video/beezer.c
index 0c20d03125d..1ed9c0c22cd 100644
--- a/src/mame/video/beezer.c
+++ b/src/mame/video/beezer.c
@@ -13,9 +13,9 @@ TIMER_DEVICE_CALLBACK( beezer_interrupt )
via_0->write_ca2((scanline & 0x20) ? 1 : 0);
#if 0
if (scanline == 240) // actually unused by the game! (points to a tight loop)
- device_set_input_line(state->m_maincpu, M6809_FIRQ_LINE, ASSERT_LINE);
+ state->m_maincpu->set_input_line(M6809_FIRQ_LINE, ASSERT_LINE);
else
- device_set_input_line(state->m_maincpu, M6809_FIRQ_LINE, CLEAR_LINE);
+ state->m_maincpu->set_input_line(M6809_FIRQ_LINE, CLEAR_LINE);
#endif
}