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/magicfly.cpp | |
parent | e7b33bd5e22adfc7422c969a0a2b6400c6563394 (diff) |
tilemap: that macro has contributed nothing but obfuscation since we moved to C++
Diffstat (limited to 'src/mame/drivers/magicfly.cpp')
-rw-r--r-- | src/mame/drivers/magicfly.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/magicfly.cpp b/src/mame/drivers/magicfly.cpp index 6d46a08e875..88537d9e1c6 100644 --- a/src/mame/drivers/magicfly.cpp +++ b/src/mame/drivers/magicfly.cpp @@ -537,7 +537,7 @@ TILE_GET_INFO_MEMBER(magicfly_state::get_magicfly_tile_info) m_colorram[0] = m_colorram[0] | ((m_colorram[0] & 0x08) << 4); /* only for 1st offset */ //m_colorram[tile_index] = attr | ((attr & 0x08) << 4); /* for the whole color RAM */ - SET_TILE_INFO_MEMBER(bank, code, color, 0); + tileinfo.set(bank, code, color, 0); } void magicfly_state::video_start() @@ -568,7 +568,7 @@ TILE_GET_INFO_MEMBER(magicfly_state::get_7mezzo_tile_info) m_colorram[0] = m_colorram[0] | ((m_colorram[0] & 0x04) << 5); /* only for 1st offset */ //m_colorram[tile_index] = attr | ((attr & 0x04) << 5); /* for the whole color RAM */ - SET_TILE_INFO_MEMBER(bank, code, color, 0); + tileinfo.set(bank, code, color, 0); } VIDEO_START_MEMBER(magicfly_state, 7mezzo) |