diff options
Diffstat (limited to 'src/mame/drivers/olibochu.cpp')
-rw-r--r-- | src/mame/drivers/olibochu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/olibochu.cpp b/src/mame/drivers/olibochu.cpp index 5f76ddabc3d..9f1a6242971 100644 --- a/src/mame/drivers/olibochu.cpp +++ b/src/mame/drivers/olibochu.cpp @@ -178,7 +178,7 @@ TILE_GET_INFO_MEMBER(olibochu_state::get_bg_tile_info) void olibochu_state::video_start() { - m_bg_tilemap = &machine().tilemap().create(m_gfxdecode, tilemap_get_info_delegate(FUNC(olibochu_state::get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32); + m_bg_tilemap = &machine().tilemap().create(*m_gfxdecode, tilemap_get_info_delegate(FUNC(olibochu_state::get_bg_tile_info),this), TILEMAP_SCAN_ROWS, 8, 8, 32, 32); } void olibochu_state::draw_sprites( bitmap_ind16 &bitmap, const rectangle &cliprect ) |