summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/koikoi.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/koikoi.cpp')
-rw-r--r--src/mame/drivers/koikoi.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/koikoi.cpp b/src/mame/drivers/koikoi.cpp
index 93cf170274b..5f815f53fcb 100644
--- a/src/mame/drivers/koikoi.cpp
+++ b/src/mame/drivers/koikoi.cpp
@@ -105,7 +105,7 @@ TILE_GET_INFO_MEMBER(koikoi_state::get_tile_info)
int color = (m_videoram[tile_index + 0x400] & 0x1f);
int flip = (m_videoram[tile_index + 0x400] & 0x80) ? (TILEMAP_FLIPX | TILEMAP_FLIPY) : 0;
- SET_TILE_INFO_MEMBER(0, code, color, flip);
+ tileinfo.set(0, code, color, flip);
}
void koikoi_state::koikoi_palette(palette_device &palette) const