From f8c72fd044af4fea2ffeca51a4b3c2ae925b3d98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C3=ABl=20Banaan=20Ananas?= Date: Thu, 17 Feb 2011 23:12:19 +0000 Subject: [PATCH] and fix sfx samples --- src/mame/drivers/galaxian.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/drivers/galaxian.c b/src/mame/drivers/galaxian.c index 559e9d2b950..2133faac21e 100644 --- a/src/mame/drivers/galaxian.c +++ b/src/mame/drivers/galaxian.c @@ -818,13 +818,13 @@ static WRITE8_DEVICE_HANDLER( sfx_sample_control_w ) /* the inverse of bit 0 clocks the flip flop to signal an INT */ /* it is automatically cleared on the acknowledge */ if ((old & 0x01) && !(data & 0x01)) - cputag_set_input_line(device->machine, "audiocpu", 0, HOLD_LINE); + cputag_set_input_line(device->machine, "audio2", 0, HOLD_LINE); } static const ppi8255_interface sfx_ppi8255_2_intf = { - DEVCB_MEMORY_HANDLER("maincpu", PROGRAM, soundlatch2_r), /* Port A read */ + DEVCB_MEMORY_HANDLER("maincpu", PROGRAM, soundlatch2_r),/* Port A read */ DEVCB_NULL, /* Port B read */ DEVCB_NULL, /* Port C read */ DEVCB_NULL, /* Port A write */