summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mpu5.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mpu5.cpp')
-rw-r--r--src/mame/drivers/mpu5.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/mpu5.cpp b/src/mame/drivers/mpu5.cpp
index ce2bd383616..1f2a2c72d27 100644
--- a/src/mame/drivers/mpu5.cpp
+++ b/src/mame/drivers/mpu5.cpp
@@ -532,7 +532,7 @@ WRITE32_MEMBER(mpu5_state::mpu5_mem_w)
void mpu5_state::mpu5_map(address_map &map)
{
- map(0x00000000, 0xffffffff).rw(this, FUNC(mpu5_state::mpu5_mem_r), FUNC(mpu5_state::mpu5_mem_w));
+ map(0x00000000, 0xffffffff).rw(FUNC(mpu5_state::mpu5_mem_r), FUNC(mpu5_state::mpu5_mem_w));
}
INPUT_PORTS_START( mpu5 )