summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/hyperspt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/hyperspt.cpp')
-rw-r--r--src/mame/video/hyperspt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/hyperspt.cpp b/src/mame/video/hyperspt.cpp
index 594545e74c8..19f2ad88e02 100644
--- a/src/mame/video/hyperspt.cpp
+++ b/src/mame/video/hyperspt.cpp
@@ -111,7 +111,7 @@ TILE_GET_INFO_MEMBER(hyperspt_state::get_bg_tile_info)
int color = m_colorram[tile_index] & 0x0f;
int flags = ((m_colorram[tile_index] & 0x10) ? TILE_FLIPX : 0) | ((m_colorram[tile_index] & 0x20) ? TILE_FLIPY : 0);
- SET_TILE_INFO_MEMBER(1, code, color, flags);
+ tileinfo.set(1, code, color, flags);
}
void hyperspt_state::video_start()
@@ -181,7 +181,7 @@ TILE_GET_INFO_MEMBER(hyperspt_state::roadf_get_bg_tile_info)
int color = m_colorram[tile_index] & 0x0f;
int flags = (m_colorram[tile_index] & 0x10) ? TILE_FLIPX : 0;
- SET_TILE_INFO_MEMBER(1, code, color, flags);
+ tileinfo.set(1, code, color, flags);
}
VIDEO_START_MEMBER(hyperspt_state,roadf)