summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/mt735.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/mt735.cpp')
-rw-r--r--src/mame/drivers/mt735.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/mt735.cpp b/src/mame/drivers/mt735.cpp
index 8e6b07885f9..0589f3231ef 100644
--- a/src/mame/drivers/mt735.cpp
+++ b/src/mame/drivers/mt735.cpp
@@ -55,8 +55,8 @@ void mt735_state::mt735_map(address_map &map)
map(0x000000, 0x03ffff).rom().region("maincpu", 0);
map(0x278000, 0x287fff).ram();
map(0x400000, 0x4fffff).ram();
- map(0xff8004, 0xff8004).r(this, FUNC(mt735_state::p4_r));
- map(0xff8005, 0xff8005).r(this, FUNC(mt735_state::p5_r));
+ map(0xff8004, 0xff8004).r(FUNC(mt735_state::p4_r));
+ map(0xff8005, 0xff8005).r(FUNC(mt735_state::p5_r));
}
static INPUT_PORTS_START( mt735 )