bus/amiga/toccata.cpp: fixed Clang compile

This commit is contained in:
Ivan Vangelista 2024-12-13 18:58:25 +01:00
parent d2ab324cf5
commit 091fa81bba

View File

@ -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));
}