summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mits680b.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mits680b.cpp')
-rw-r--r--src/mame/drivers/mits680b.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/mits680b.cpp b/src/mame/drivers/mits680b.cpp
index 2e3fe33b7b5..4603000bd54 100644
--- a/src/mame/drivers/mits680b.cpp
+++ b/src/mame/drivers/mits680b.cpp
@@ -54,7 +54,7 @@ void mits680b_state::mem_map(address_map &map)
map.unmap_value_high();
map(0x0000, 0x03ff).ram(); // 1024 bytes RAM
map(0xf000, 0xf001).rw("acia", FUNC(acia6850_device::read), FUNC(acia6850_device::write));
- map(0xf002, 0xf002).r(this, FUNC(mits680b_state::status_check_r));
+ map(0xf002, 0xf002).r(FUNC(mits680b_state::status_check_r));
map(0xff00, 0xffff).rom().region("roms", 0);
}