summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/battlex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/battlex.cpp')
-rw-r--r--src/mame/video/battlex.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/battlex.cpp b/src/mame/video/battlex.cpp
index 218d3163fb4..15508121688 100644
--- a/src/mame/video/battlex.cpp
+++ b/src/mame/video/battlex.cpp
@@ -58,7 +58,7 @@ TILE_GET_INFO_MEMBER(battlex_state::get_bg_tile_info)
int tile = m_videoram[tile_index * 2] | (((m_videoram[tile_index * 2 + 1] & 0x01)) << 8);
int color = (m_videoram[tile_index * 2 + 1] & 0x0e) >> 1; // high bits unused
- SET_TILE_INFO_MEMBER(0, tile, color, 0);
+ tileinfo.set(0, tile, color, 0);
}
TILE_GET_INFO_MEMBER(battlex_state::get_dodgeman_bg_tile_info)
@@ -66,7 +66,7 @@ TILE_GET_INFO_MEMBER(battlex_state::get_dodgeman_bg_tile_info)
int tile = m_videoram[tile_index * 2] | (((m_videoram[tile_index * 2 + 1] & 0x03)) << 8);
int color = (m_videoram[tile_index * 2 + 1] & 0x0c) >> 2; // high bits unused
- SET_TILE_INFO_MEMBER(0, tile, color, 0);
+ tileinfo.set(0, tile, color, 0);
}
void battlex_state::video_start()