summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/macpds/hyperdrive.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/macpds/hyperdrive.cpp')
-rw-r--r--src/devices/bus/macpds/hyperdrive.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/macpds/hyperdrive.cpp b/src/devices/bus/macpds/hyperdrive.cpp
index 0c64d077765..d880ed9ec17 100644
--- a/src/devices/bus/macpds/hyperdrive.cpp
+++ b/src/devices/bus/macpds/hyperdrive.cpp
@@ -159,7 +159,7 @@ void macpds_hyperdrive_device::device_start()
install_rom(this, HYPERDRIVE_ROM_REGION, 0xf80000);
// WD200x registers
- m_macpds->install_device(0xfc0000, 0xfc000f, read16_delegate(FUNC(macpds_hyperdrive_device::hyperdrive_r), this), write16_delegate(FUNC(macpds_hyperdrive_device::hyperdrive_w), this));
+ m_macpds->install_device(0xfc0000, 0xfc000f, read16_delegate(*this, FUNC(macpds_hyperdrive_device::hyperdrive_r)), write16_delegate(*this, FUNC(macpds_hyperdrive_device::hyperdrive_w)));
}
//-------------------------------------------------