summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--src/devices/bus/amiga/zorro/toccata.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/amiga/zorro/toccata.cpp b/src/devices/bus/amiga/zorro/toccata.cpp
index 1bf33628289..39a34861aca 100644
--- a/src/devices/bus/amiga/zorro/toccata.cpp
+++ b/src/devices/bus/amiga/zorro/toccata.cpp
@@ -76,10 +76,10 @@ void toccata_device::device_add_mconfig(machine_config &config)
m_ad1848->drq().set(FUNC(toccata_device::drq_w));
IDT7202(config, m_fifo[0]);
- m_fifo[0]->hf_handler().set(FUNC(playback_hf_w));
+ m_fifo[0]->hf_handler().set(FUNC(toccata_device::playback_hf_w));
IDT7202(config, m_fifo[1]);
- m_fifo[1]->hf_handler().set(FUNC(record_hf_w));
+ m_fifo[1]->hf_handler().set(FUNC(toccata_device::record_hf_w));
}