diff options
author | 2024-12-13 18:58:25 +0100 | |
---|---|---|
committer | 2024-12-13 18:58:25 +0100 | |
commit | 091fa81bba14b0bad467b43f2fe90c23b9eae8ae (patch) | |
tree | 7d4b5dca3eb61e2e184f73b8e96fe60886e2a704 | |
parent | d2ab324cf5f6217e8d37aa59f310c9aaa4ba3269 (diff) |
bus/amiga/toccata.cpp: fixed Clang compile
-rw-r--r-- | src/devices/bus/amiga/zorro/toccata.cpp | 4 |
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)); } |