summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/bus/msx_cart/fmpac.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/bus/msx_cart/fmpac.cpp')
-rw-r--r--src/devices/bus/msx_cart/fmpac.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/bus/msx_cart/fmpac.cpp b/src/devices/bus/msx_cart/fmpac.cpp
index a5229a6c61e..75af22353dc 100644
--- a/src/devices/bus/msx_cart/fmpac.cpp
+++ b/src/devices/bus/msx_cart/fmpac.cpp
@@ -47,7 +47,7 @@ void msx_cart_fmpac_device::device_start()
save_item(NAME(m_7ff6));
// Install IO read/write handlers
- io_space().install_write_handler(0x7c, 0x7d, write8sm_delegate(FUNC(msx_cart_fmpac_device::write_ym2413), this));
+ io_space().install_write_handler(0x7c, 0x7d, write8sm_delegate(*this, FUNC(msx_cart_fmpac_device::write_ym2413)));
}