summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/nubus/bootbug.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/nubus/bootbug.cpp')
-rw-r--r--src/devices/bus/nubus/bootbug.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/nubus/bootbug.cpp b/src/devices/bus/nubus/bootbug.cpp
index 24763b64dc2..427d35b33b5 100644
--- a/src/devices/bus/nubus/bootbug.cpp
+++ b/src/devices/bus/nubus/bootbug.cpp
@@ -102,7 +102,7 @@ void nubus_bootbug_device::device_start()
slotspace = get_slotspace();
- nubus().install_device(slotspace, slotspace+0xff, read32_delegate(FUNC(nubus_bootbug_device::dev_r), this), write32_delegate(FUNC(nubus_bootbug_device::dev_w), this));
+ nubus().install_device(slotspace, slotspace+0xff, read32_delegate(*this, FUNC(nubus_bootbug_device::dev_r)), write32_delegate(*this, FUNC(nubus_bootbug_device::dev_w)));
}
//-------------------------------------------------