From ac1b7a7654a38ee6ed6248e60f5be84bc96d87f1 Mon Sep 17 00:00:00 2001 From: Joakim Larsson Edstrom Date: Mon, 28 Oct 2019 20:07:05 +0100 Subject: eispc_twib.cpp: fix build error --- src/devices/bus/isa/eis_twib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/devices/bus/isa/eis_twib.cpp b/src/devices/bus/isa/eis_twib.cpp index 7be501e8860..8902ead74ef 100644 --- a/src/devices/bus/isa/eis_twib.cpp +++ b/src/devices/bus/isa/eis_twib.cpp @@ -249,8 +249,8 @@ void isa8_eistwib_device::device_reset() LOG("Installing twib device at %04x\n", base); m_isa->install_device( base, base + 0x0f, - read8_delegate(FUNC( isa8_eistwib_device::twib_r ), this), - write8_delegate(FUNC( isa8_eistwib_device::twib_w ), this)); + read8_delegate(*this, FUNC( isa8_eistwib_device::twib_r )), + write8_delegate(*this, FUNC( isa8_eistwib_device::twib_w ))); m_installed = true; } // CD and CTS input are tied to ground -- cgit v1.2.3