summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author mooglyguy <therealmogminer@gmail.com>2018-12-18 17:34:33 +0100
committer mooglyguy <therealmogminer@gmail.com>2018-12-18 17:34:45 +0100
commit0868e31f8904d99c6314c3728940f3383dc21ac3 (patch)
tree85a42422de4667db69d45c7606f390debb2d8698
parentc6a01f652b062893dfd1667c78dc79a773749ebc (diff)
Fix sbagman sound regression, nw
-rw-r--r--src/mame/drivers/bagman.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/bagman.cpp b/src/mame/drivers/bagman.cpp
index e67b6865c78..2383dd10e19 100644
--- a/src/mame/drivers/bagman.cpp
+++ b/src/mame/drivers/bagman.cpp
@@ -490,7 +490,7 @@ void bagman_state::bagman(machine_config &config)
m_tmsprom->set_reset_bit(6); /* bit # of rom reset */
m_tmsprom->set_stop_bit(7); /* bit # of stop */
m_tmsprom->pdc().set("tms", FUNC(tms5110_device::pdc_w)); /* tms pdc func */
- m_tmsprom->pdc().set("tms", FUNC(tms5110_device::ctl_w)); /* tms ctl func */
+ m_tmsprom->ctl().set("tms", FUNC(tms5110_device::ctl_w)); /* tms ctl func */
tms5110a_device &tms(TMS5110A(config, "tms", 640000));
tms.m0().set("tmsprom", FUNC(tmsprom_device::m0_w));