summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/gotya.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/gotya.cpp')
-rw-r--r--src/mame/video/gotya.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/gotya.cpp b/src/mame/video/gotya.cpp
index 473676eef7e..f6953cc034a 100644
--- a/src/mame/video/gotya.cpp
+++ b/src/mame/video/gotya.cpp
@@ -104,7 +104,7 @@ TILEMAP_MAPPER_MEMBER(gotya_state::tilemap_scan_rows_thehand)
void gotya_state::video_start()
{
- m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(gotya_state::get_bg_tile_info),this), tilemap_mapper_delegate(FUNC(gotya_state::tilemap_scan_rows_thehand),this), 8, 8, 64, 32);
+ m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(*this, FUNC(gotya_state::get_bg_tile_info)), tilemap_mapper_delegate(*this, FUNC(gotya_state::tilemap_scan_rows_thehand)), 8, 8, 64, 32);
}
void gotya_state::draw_status_row( bitmap_ind16 &bitmap, const rectangle &cliprect, int sx, int col )