summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/commando.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/commando.c')
-rw-r--r--src/mame/video/commando.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/commando.c b/src/mame/video/commando.c
index ee1db6ab7e3..5d8511d2e8a 100644
--- a/src/mame/video/commando.c
+++ b/src/mame/video/commando.c
@@ -60,7 +60,7 @@ WRITE8_MEMBER(commando_state::commando_c804_w)
coin_counter_w(machine(), 1, data & 0x02);
// bit 4 resets the sound CPU
- device_set_input_line(m_audiocpu, INPUT_LINE_RESET, (data & 0x10) ? ASSERT_LINE : CLEAR_LINE);
+ m_audiocpu->set_input_line(INPUT_LINE_RESET, (data & 0x10) ? ASSERT_LINE : CLEAR_LINE);
// bit 7 flips screen
flip_screen_set(data & 0x80);