summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/isa/chessmdr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/isa/chessmdr.cpp')
-rw-r--r--src/devices/bus/isa/chessmdr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/isa/chessmdr.cpp b/src/devices/bus/isa/chessmdr.cpp
index 00182d9e5ff..8af46575421 100644
--- a/src/devices/bus/isa/chessmdr.cpp
+++ b/src/devices/bus/isa/chessmdr.cpp
@@ -49,7 +49,7 @@ void isa8_chessmdr_device::device_reset()
{
// MAME doesn't allow reading ioport at device_start
u16 port = ioport("DSW")->read() * 0x40 + 0x10;
- m_isa->install_device(port, port+1, read8_delegate(FUNC(isa8_chessmdr_device::chessmdr_r), this), write8_delegate(FUNC(isa8_chessmdr_device::chessmdr_w), this));
+ m_isa->install_device(port, port+1, read8_delegate(*this, FUNC(isa8_chessmdr_device::chessmdr_r)), write8_delegate(*this, FUNC(isa8_chessmdr_device::chessmdr_w)));
m_installed = true;
}