summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/vpoker.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/vpoker.cpp')
-rw-r--r--src/mame/drivers/vpoker.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/vpoker.cpp b/src/mame/drivers/vpoker.cpp
index f157a580fad..550a7ff9e59 100644
--- a/src/mame/drivers/vpoker.cpp
+++ b/src/mame/drivers/vpoker.cpp
@@ -187,7 +187,7 @@ void vpoker_state::main_map(address_map &map)
map.global_mask(0x3fff);
map(0x0000, 0x01ff).ram(); /* vpoker has 0x100, 5acespkr has 0x200 */
map(0x0400, 0x0407).rw("6840ptm", FUNC(ptm6840_device::read), FUNC(ptm6840_device::write));
- map(0x0800, 0x0807).r(this, FUNC(vpoker_state::blitter_r)).w(this, FUNC(vpoker_state::blitter_w));
+ map(0x0800, 0x0807).r(FUNC(vpoker_state::blitter_r)).w(FUNC(vpoker_state::blitter_w));
map(0x2000, 0x3fff).rom();
}