diff options
Diffstat (limited to 'src/mame/drivers/rmhaihai.cpp')
-rw-r--r-- | src/mame/drivers/rmhaihai.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/drivers/rmhaihai.cpp b/src/mame/drivers/rmhaihai.cpp index 7d3a612bc7b..95d1a2605c2 100644 --- a/src/mame/drivers/rmhaihai.cpp +++ b/src/mame/drivers/rmhaihai.cpp @@ -127,7 +127,7 @@ TILE_GET_INFO_MEMBER(rmhaihai_state::get_bg_tile_info) int code = m_videoram[tile_index] + (m_gfxbank << 12) + ((attr & 0x07) << 8) + ((attr & 0x80) << 4); int color = (m_gfxbank << 5) + (attr >> 3); - SET_TILE_INFO_MEMBER(0, code, color, 0); + tileinfo.set(0, code, color, 0); } void rmhaihai_state::video_start() |