summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/mrjong.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/mrjong.cpp')
-rw-r--r--src/mame/video/mrjong.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/mrjong.cpp b/src/mame/video/mrjong.cpp
index eb0a5875a36..cbde07f0141 100644
--- a/src/mame/video/mrjong.cpp
+++ b/src/mame/video/mrjong.cpp
@@ -93,7 +93,7 @@ TILE_GET_INFO_MEMBER(mrjong_state::get_bg_tile_info)
int color = m_colorram[tile_index] & 0x1f;
int flags = ((m_colorram[tile_index] & 0x40) ? TILE_FLIPX : 0) | ((m_colorram[tile_index] & 0x80) ? TILE_FLIPY : 0);
- SET_TILE_INFO_MEMBER(0, code, color, flags);
+ tileinfo.set(0, code, color, flags);
}
void mrjong_state::video_start()