summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/fuukifg2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/fuukifg2.cpp')
-rw-r--r--src/mame/video/fuukifg2.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/fuukifg2.cpp b/src/mame/video/fuukifg2.cpp
index fc9aeb1c6c3..e8f67e76542 100644
--- a/src/mame/video/fuukifg2.cpp
+++ b/src/mame/video/fuukifg2.cpp
@@ -52,7 +52,7 @@ TILE_GET_INFO_MEMBER(fuuki16_state::get_tile_info)
const int buffer = (Layer < 2) ? 0 : (m_vregs[0x1e / 2] & 0x40) >> 6;
const u16 code = m_vram[Layer|buffer][2 * tile_index + 0];
const u16 attr = m_vram[Layer|buffer][2 * tile_index + 1];
- SET_TILE_INFO_MEMBER(Layer, code, attr & 0x3f, TILE_FLIPYX((attr >> 6) & 3));
+ tileinfo.set(Layer, code, attr & 0x3f, TILE_FLIPYX((attr >> 6) & 3));
}
/***************************************************************************