summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/retofinv.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/retofinv.cpp')
-rw-r--r--src/mame/video/retofinv.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/retofinv.cpp b/src/mame/video/retofinv.cpp
index 5497f93d52e..c7494c12ad0 100644
--- a/src/mame/video/retofinv.cpp
+++ b/src/mame/video/retofinv.cpp
@@ -96,7 +96,7 @@ TILEMAP_MAPPER_MEMBER(retofinv_state::tilemap_scan)
TILE_GET_INFO_MEMBER(retofinv_state::bg_get_tile_info)
{
- SET_TILE_INFO_MEMBER(2,
+ tileinfo.set(2,
m_bg_videoram[tile_index] + 256 * m_bg_bank,
m_bg_videoram[0x400 + tile_index] & 0x3f,
0);
@@ -108,7 +108,7 @@ TILE_GET_INFO_MEMBER(retofinv_state::fg_get_tile_info)
tileinfo.group = color;
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
m_fg_videoram[tile_index] + 256 * m_fg_bank,
color,
0);