summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/sound/2203intf.c
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2013-05-12 11:54:24 +0000
committer smf- <smf-@users.noreply.github.com>2013-05-12 11:54:24 +0000
commit30f001dbe9b8fed2f5241f71077ab9f3a27c4d3a (patch)
tree7aa718985c165413d3106803eaaba5ea9a64c391 /src/emu/sound/2203intf.c
parent10a80d903b68a3ec60454159f358da9b078ae1b1 (diff)
simplified ay8910_start_ym now that all sound chips that use it are devices (nw)
Diffstat (limited to 'src/emu/sound/2203intf.c')
-rw-r--r--src/emu/sound/2203intf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/sound/2203intf.c b/src/emu/sound/2203intf.c
index f5e9f6c9e89..95506028948 100644
--- a/src/emu/sound/2203intf.c
+++ b/src/emu/sound/2203intf.c
@@ -136,7 +136,7 @@ void ym2203_device::device_start()
const ay8910_interface *ay8910_config = m_ay8910_config != NULL ? m_ay8910_config : &default_ay8910_config;
m_irq_handler.resolve();
- m_psg = ay8910_start_ym(NULL, type(), this, clock(), ay8910_config);
+ m_psg = ay8910_start_ym(this, ay8910_config);
assert_always(m_psg != NULL, "Error creating YM2203/AY8910 chip");
/* Timer Handler set */