summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/zac_2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/zac_2.cpp')
-rw-r--r--src/mame/drivers/zac_2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/zac_2.cpp b/src/mame/drivers/zac_2.cpp
index 6144ab74ba5..888a45b72fb 100644
--- a/src/mame/drivers/zac_2.cpp
+++ b/src/mame/drivers/zac_2.cpp
@@ -68,8 +68,8 @@ void zac_2_state::zac_2_io(address_map &map)
void zac_2_state::zac_2_data(address_map &map)
{
- map(S2650_CTRL_PORT, S2650_CTRL_PORT).rw(this, FUNC(zac_2_state::ctrl_r), FUNC(zac_2_state::ctrl_w));
- map(S2650_DATA_PORT, S2650_DATA_PORT).rw(this, FUNC(zac_2_state::data_r), FUNC(zac_2_state::data_w));
+ map(S2650_CTRL_PORT, S2650_CTRL_PORT).rw(FUNC(zac_2_state::ctrl_r), FUNC(zac_2_state::ctrl_w));
+ map(S2650_DATA_PORT, S2650_DATA_PORT).rw(FUNC(zac_2_state::data_r), FUNC(zac_2_state::data_w));
}
static INPUT_PORTS_START( zac_2 )