summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/wink.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/wink.c')
-rw-r--r--src/mame/drivers/wink.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/wink.c b/src/mame/drivers/wink.c
index bd6b428a096..53e4d0b5f47 100644
--- a/src/mame/drivers/wink.c
+++ b/src/mame/drivers/wink.c
@@ -107,7 +107,7 @@ READ8_MEMBER(wink_state::player_inputs_r)
WRITE8_MEMBER(wink_state::sound_irq_w)
{
- cputag_set_input_line(machine(), "audiocpu", 0, HOLD_LINE);
+ machine().device("audiocpu")->execute().set_input_line(0, HOLD_LINE);
//sync with sound cpu (but it still loses some soundlatches...)
//machine().scheduler().synchronize();
}