summaryrefslogtreecommitdiffstats
path: root/src/mame/video/exprraid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/exprraid.cpp')
-rw-r--r--src/mame/video/exprraid.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/exprraid.cpp b/src/mame/video/exprraid.cpp
index 8c812a01a3d..d833ef70c0f 100644
--- a/src/mame/video/exprraid.cpp
+++ b/src/mame/video/exprraid.cpp
@@ -68,7 +68,7 @@ TILE_GET_INFO_MEMBER(exprraid_state::get_bg_tile_info)
tileinfo.category = ((attr & 0x80) ? 1 : 0);
- SET_TILE_INFO_MEMBER(bank, code, color, flags);
+ tileinfo.set(bank, code, color, flags);
}
TILE_GET_INFO_MEMBER(exprraid_state::get_fg_tile_info)
@@ -77,7 +77,7 @@ TILE_GET_INFO_MEMBER(exprraid_state::get_fg_tile_info)
int code = m_videoram[tile_index] + ((attr & 0x07) << 8);
int color = (attr & 0x10) >> 4;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
void exprraid_state::video_start()