From 5252d8d34ff59ab4acd7fbce0e1252cc4240a8b8 Mon Sep 17 00:00:00 2001 From: "Alex W. Jackson" Date: Tue, 6 May 2014 18:25:15 +0000 Subject: [PATCH] ay8910.c: AY8912 and AY8913 are AY8910-based, not YM2149-based (nw) --- src/emu/sound/ay8910.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/sound/ay8910.c b/src/emu/sound/ay8910.c index d59c3aa137f..ee80981e61a 100644 --- a/src/emu/sound/ay8910.c +++ b/src/emu/sound/ay8910.c @@ -731,7 +731,7 @@ void ay8910_device::device_start() m_streams = 3; - if (chip_type == AY8910 || chip_type == AY8914 || chip_type == AY8930) + if (chip_type == AY8910 || chip_type == AY8912 || chip_type == AY8913 || chip_type == AY8914 || chip_type == AY8930) { m_step = 2; m_par = &ay8910_param;