summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/k054539.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/k054539.cpp')
-rw-r--r--src/devices/sound/k054539.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/devices/sound/k054539.cpp b/src/devices/sound/k054539.cpp
index 448defed448..59f9cf2ae2e 100644
--- a/src/devices/sound/k054539.cpp
+++ b/src/devices/sound/k054539.cpp
@@ -1,5 +1,5 @@
// license:BSD-3-Clause
-// copyright-holders:Aaron Giles
+// copyright-holders:Olivier Galibert
/*********************************************************
Konami 054539 (TOP) PCM Sound Chip
@@ -508,8 +508,7 @@ void k054539_device::device_start()
{
m_timer = timer_alloc(FUNC(k054539_device::call_timer_handler), this);
- // resolve / bind callbacks
- m_timer_handler.resolve_safe();
+ // resolve delegates
m_apan_cb.resolve();
for (auto & elem : gain)
@@ -557,10 +556,11 @@ void k054539_device::device_reset()
//-------------------------------------------------
-// rom_bank_updated - the rom bank has changed
+// rom_bank_pre_change - refresh the stream if the
+// ROM banking changes
//-------------------------------------------------
-void k054539_device::rom_bank_updated()
+void k054539_device::rom_bank_pre_change()
{
stream->update();
}