From 091fa81bba14b0bad467b43f2fe90c23b9eae8ae Mon Sep 17 00:00:00 2001 From: Ivan Vangelista Date: Fri, 13 Dec 2024 18:58:25 +0100 Subject: bus/amiga/toccata.cpp: fixed Clang compile --- src/devices/bus/amiga/zorro/toccata.cpp | 4 ++-- 1 file 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)); } -- cgit v1.2.3