summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/gmaster.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/gmaster.cpp')
-rw-r--r--src/mame/drivers/gmaster.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/gmaster.cpp b/src/mame/drivers/gmaster.cpp
index 0fb7992ddaa..4a352fc8599 100644
--- a/src/mame/drivers/gmaster.cpp
+++ b/src/mame/drivers/gmaster.cpp
@@ -240,7 +240,7 @@ WRITE8_MEMBER(gmaster_state::gmaster_portf_w)
void gmaster_state::gmaster_mem(address_map &map)
{
map(0x0000, 0x3fff).rom();
- map(0x4000, 0x7fff).rw(this, FUNC(gmaster_state::gmaster_io_r), FUNC(gmaster_state::gmaster_io_w));
+ map(0x4000, 0x7fff).rw(FUNC(gmaster_state::gmaster_io_r), FUNC(gmaster_state::gmaster_io_w));
//AM_RANGE(0x8000, 0xfeff) // mapped by the cartslot
}