summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/3x3puzzl.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/3x3puzzl.cpp')
-rw-r--r--src/mame/drivers/3x3puzzl.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/3x3puzzl.cpp b/src/mame/drivers/3x3puzzl.cpp
index 12f5455f6a9..7fd86419adb 100644
--- a/src/mame/drivers/3x3puzzl.cpp
+++ b/src/mame/drivers/3x3puzzl.cpp
@@ -218,13 +218,13 @@ void _3x3puzzle_state::_3x3puzzle_map(address_map &map)
map(0x202000, 0x202fff).ram().share("videoram3");
map(0x280000, 0x280001).portr("VBLANK");
map(0x300000, 0x3005ff).ram().w("palette", FUNC(palette_device::write16)).share("palette");
- map(0x400000, 0x400001).w(this, FUNC(_3x3puzzle_state::tilemap1_scrollx_w));
- map(0x480000, 0x480001).w(this, FUNC(_3x3puzzle_state::tilemap1_scrolly_w));
+ map(0x400000, 0x400001).w(FUNC(_3x3puzzle_state::tilemap1_scrollx_w));
+ map(0x480000, 0x480001).w(FUNC(_3x3puzzle_state::tilemap1_scrolly_w));
map(0x500000, 0x500001).portr("P1");
map(0x580000, 0x580001).portr("SYS");
map(0x600000, 0x600001).portr("DSW01");
map(0x700001, 0x700001).rw(m_oki, FUNC(okim6295_device::read), FUNC(okim6295_device::write));
- map(0x800000, 0x800001).w(this, FUNC(_3x3puzzle_state::gfx_ctrl_w));
+ map(0x800000, 0x800001).w(FUNC(_3x3puzzle_state::gfx_ctrl_w));
map(0x880000, 0x880001).nopr(); // read, but no tested afterwards
}