summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/drivers/multi8.c
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-05-12 19:14:13 +0000
committer smf- <smf-@users.noreply.github.com>2013-05-12 19:14:13 +0000
commita968a3847ba4e71c823a0d6cf52520de5854ba0e (patch)
treedc4c733185fe97a7fdc1795f1964e1bcc8f05286 /src/mess/drivers/multi8.c
parentafffa28cda747a254089a4d9e4b008355f6232cc (diff)
The old code passed a ym2203 structure to an ay8912, which happened to work before because there was no type checking. Now it causes an error (nw)
Diffstat (limited to 'src/mess/drivers/multi8.c')
-rw-r--r--src/mess/drivers/multi8.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/drivers/multi8.c b/src/mess/drivers/multi8.c
index 152dd723d64..68145c0ce65 100644
--- a/src/mess/drivers/multi8.c
+++ b/src/mess/drivers/multi8.c
@@ -677,7 +677,7 @@ static MACHINE_CONFIG_START( multi8, multi8_state )
/* Audio */
MCFG_SPEAKER_STANDARD_MONO("mono")
MCFG_SOUND_ADD("aysnd", AY8912, 1500000) //unknown clock / divider
- MCFG_YM2203_AY8910_INTF(&ay8910_config)
+ MCFG_SOUND_CONFIG(&ay8910_config)
MCFG_SOUND_ROUTE(ALL_OUTPUTS, "mono", 0.50)
MCFG_SOUND_ADD("beeper", BEEP, 0)
MCFG_SOUND_ROUTE(ALL_OUTPUTS,"mono",0.50)