summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/ironhors.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/ironhors.cpp')
-rw-r--r--src/mame/video/ironhors.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/ironhors.cpp b/src/mame/video/ironhors.cpp
index 059a1109e9e..619e557a67e 100644
--- a/src/mame/video/ironhors.cpp
+++ b/src/mame/video/ironhors.cpp
@@ -134,7 +134,7 @@ TILE_GET_INFO_MEMBER(ironhors_state::get_bg_tile_info)
int flags = ((m_colorram[tile_index] & 0x10) ? TILE_FLIPX : 0) |
((m_colorram[tile_index] & 0x20) ? TILE_FLIPY : 0);
- SET_TILE_INFO_MEMBER(0, code, color, flags);
+ tileinfo.set(0, code, color, flags);
}
void ironhors_state::video_start()
@@ -246,7 +246,7 @@ TILE_GET_INFO_MEMBER(ironhors_state::farwest_get_bg_tile_info)
int color = (m_colorram[tile_index] & 0x0f) + 16 * m_palettebank;
int flags = 0;//((m_colorram[tile_index] & 0x10) ? TILE_FLIPX : 0) | ((m_colorram[tile_index] & 0x20) ? TILE_FLIPY : 0);
- SET_TILE_INFO_MEMBER(0, code, color, flags);
+ tileinfo.set(0, code, color, flags);
}
VIDEO_START_MEMBER(ironhors_state,farwest)