summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/renegade.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/renegade.cpp')
-rw-r--r--src/mame/video/renegade.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/renegade.cpp b/src/mame/video/renegade.cpp
index 561f4e20947..9d155b0c130 100644
--- a/src/mame/video/renegade.cpp
+++ b/src/mame/video/renegade.cpp
@@ -41,7 +41,7 @@ TILE_GET_INFO_MEMBER(renegade_state::get_bg_tilemap_info)
{
const uint8_t *source = &m_bg_videoram[tile_index];
uint8_t attributes = source[0x400]; /* CCC??BBB */
- SET_TILE_INFO_MEMBER(1 + (attributes & 0x7),
+ tileinfo.set(1 + (attributes & 0x7),
source[0],
attributes >> 5,
0);
@@ -51,7 +51,7 @@ TILE_GET_INFO_MEMBER(renegade_state::get_fg_tilemap_info)
{
const uint8_t *source = &m_fg_videoram[tile_index];
uint8_t attributes = source[0x400];
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
((attributes & 3) << 8) | source[0],
attributes >> 6,
0);