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/video/tigeroad.cpp | |
parent | e7b33bd5e22adfc7422c969a0a2b6400c6563394 (diff) |
tilemap: that macro has contributed nothing but obfuscation since we moved to C++
Diffstat (limited to 'src/mame/video/tigeroad.cpp')
-rw-r--r-- | src/mame/video/tigeroad.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/tigeroad.cpp b/src/mame/video/tigeroad.cpp index 1f4010b1c7e..34be4d4a040 100644 --- a/src/mame/video/tigeroad.cpp +++ b/src/mame/video/tigeroad.cpp @@ -80,7 +80,7 @@ TILE_GET_INFO_MEMBER(tigeroad_state::get_bg_tile_info) int color = attr & 0x0f; int flags = (attr & 0x20) ? TILE_FLIPX : 0; - SET_TILE_INFO_MEMBER(1, code, color, flags); + tileinfo.set(1, code, color, flags); tileinfo.group = (attr & 0x10) ? 1 : 0; } @@ -93,7 +93,7 @@ TILE_GET_INFO_MEMBER(tigeroad_state::get_fg_tile_info) int color = attr & 0x0f; int flags = (attr & 0x10) ? TILE_FLIPY : 0; - SET_TILE_INFO_MEMBER(0, code, color, flags); + tileinfo.set(0, code, color, flags); } TILEMAP_MAPPER_MEMBER(tigeroad_state::tigeroad_tilemap_scan) |