summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/shootout.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/shootout.cpp')
-rw-r--r--src/mame/video/shootout.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/shootout.cpp b/src/mame/video/shootout.cpp
index 47c0db18368..846f1018026 100644
--- a/src/mame/video/shootout.cpp
+++ b/src/mame/video/shootout.cpp
@@ -46,7 +46,7 @@ TILE_GET_INFO_MEMBER(shootout_state::get_bg_tile_info)
int tile_number = m_videoram[tile_index] + 256*(attributes&7);
int color = attributes>>4;
- SET_TILE_INFO_MEMBER(2,
+ tileinfo.set(2,
tile_number,
color,
0);
@@ -58,7 +58,7 @@ TILE_GET_INFO_MEMBER(shootout_state::get_fg_tile_info)
int tile_number = m_textram[tile_index] + 256*(attributes&0x3);
int color = attributes>>4;
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
tile_number,
color,
0);