summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/wc90.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/wc90.cpp')
-rw-r--r--src/mame/video/wc90.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/wc90.cpp b/src/mame/video/wc90.cpp
index ca5c08d1476..c5c8b37adf6 100644
--- a/src/mame/video/wc90.cpp
+++ b/src/mame/video/wc90.cpp
@@ -15,7 +15,7 @@ TILE_GET_INFO_MEMBER(wc90_state::get_bg_tile_info)
int attr = m_bgvideoram[tile_index];
int tile = m_bgvideoram[tile_index + 0x800] +
256 * ((attr & 3) + ((attr >> 1) & 4));
- SET_TILE_INFO_MEMBER(2,
+ tileinfo.set(2,
tile,
attr >> 4,
0);
@@ -26,7 +26,7 @@ TILE_GET_INFO_MEMBER(wc90_state::get_fg_tile_info)
int attr = m_fgvideoram[tile_index];
int tile = m_fgvideoram[tile_index + 0x800] +
256 * ((attr & 3) + ((attr >> 1) & 4));
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
tile,
attr >> 4,
0);
@@ -34,7 +34,7 @@ TILE_GET_INFO_MEMBER(wc90_state::get_fg_tile_info)
TILE_GET_INFO_MEMBER(wc90_state::get_tx_tile_info)
{
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
m_txvideoram[tile_index + 0x800] + ((m_txvideoram[tile_index] & 0x07) << 8),
m_txvideoram[tile_index] >> 4,
0);
@@ -45,7 +45,7 @@ TILE_GET_INFO_MEMBER(wc90_state::track_get_bg_tile_info)
int attr = m_bgvideoram[tile_index];
int tile = m_bgvideoram[tile_index + 0x800] +
256 * (attr & 7);
- SET_TILE_INFO_MEMBER(2,
+ tileinfo.set(2,
tile,
attr >> 4,
0);
@@ -56,7 +56,7 @@ TILE_GET_INFO_MEMBER(wc90_state::track_get_fg_tile_info)
int attr = m_fgvideoram[tile_index];
int tile = m_fgvideoram[tile_index + 0x800] +
256 * (attr & 7);
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
tile,
attr >> 4,
0);