diff options
author | 2020-03-11 15:47:30 +1100 | |
---|---|---|
committer | 2020-03-11 15:47:30 +1100 | |
commit | 9733f5cf3df1255566dc147540a8d6ceab4adb6d (patch) | |
tree | 637f1e69a2b520771888635337ea4e051d7fa797 /src/mame/drivers/limenko.cpp | |
parent | e7b33bd5e22adfc7422c969a0a2b6400c6563394 (diff) |
tilemap: that macro has contributed nothing but obfuscation since we moved to C++
Diffstat (limited to 'src/mame/drivers/limenko.cpp')
-rw-r--r-- | src/mame/drivers/limenko.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/drivers/limenko.cpp b/src/mame/drivers/limenko.cpp index 2ee82ecd573..04209cc46ab 100644 --- a/src/mame/drivers/limenko.cpp +++ b/src/mame/drivers/limenko.cpp @@ -310,21 +310,21 @@ TILE_GET_INFO_MEMBER(limenko_state::get_bg_tile_info) { const u32 tile = m_bg_videoram[tile_index] & 0x7ffff; const u32 color = (m_bg_videoram[tile_index]>>28) & 0xf; - SET_TILE_INFO_MEMBER(0, tile, color, 0); + tileinfo.set(0, tile, color, 0); } TILE_GET_INFO_MEMBER(limenko_state::get_md_tile_info) { const u32 tile = m_md_videoram[tile_index] & 0x7ffff; const u32 color = (m_md_videoram[tile_index]>>28) & 0xf; - SET_TILE_INFO_MEMBER(0, tile, color, 0); + tileinfo.set(0, tile, color, 0); } TILE_GET_INFO_MEMBER(limenko_state::get_fg_tile_info) { const u32 tile = m_fg_videoram[tile_index] & 0x7ffff; const u32 color = (m_fg_videoram[tile_index]>>28) & 0xf; - SET_TILE_INFO_MEMBER(0, tile, color, 0); + tileinfo.set(0, tile, color, 0); } void limenko_state::draw_single_sprite(bitmap_ind16 &dest_bmp,const rectangle &clip,u8 width, u8 height, |