summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/shadfrce.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/shadfrce.cpp')
-rw-r--r--src/mame/video/shadfrce.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/shadfrce.cpp b/src/mame/video/shadfrce.cpp
index 1f356244173..a5023eaadbc 100644
--- a/src/mame/video/shadfrce.cpp
+++ b/src/mame/video/shadfrce.cpp
@@ -11,7 +11,7 @@ TILE_GET_INFO_MEMBER(shadfrce_state::get_fgtile_info)
tileno = (m_fgvideoram[tile_index *2] & 0x00ff) | ((m_fgvideoram[tile_index *2+1] & 0x000f) << 8);
colour = (m_fgvideoram[tile_index *2+1] & 0x00f0) >>4;
- SET_TILE_INFO_MEMBER(0,tileno,colour*4,0);
+ tileinfo.set(0,tileno,colour*4,0);
}
WRITE16_MEMBER(shadfrce_state::fgvideoram_w)
@@ -30,7 +30,7 @@ TILE_GET_INFO_MEMBER(shadfrce_state::get_bg0tile_info)
if (colour & 0x10) colour ^= 0x30; /* skip hole */
fyx = (m_bg0videoram[tile_index *2] & 0x00c0) >>6;
- SET_TILE_INFO_MEMBER(2,tileno,colour,TILE_FLIPYX(fyx));
+ tileinfo.set(2,tileno,colour,TILE_FLIPYX(fyx));
}
WRITE16_MEMBER(shadfrce_state::bg0videoram_w)
@@ -46,7 +46,7 @@ TILE_GET_INFO_MEMBER(shadfrce_state::get_bg1tile_info)
tileno = (m_bg1videoram[tile_index] & 0x0fff);
colour = (m_bg1videoram[tile_index] & 0xf000) >> 12;
- SET_TILE_INFO_MEMBER(2,tileno,colour+64,0);
+ tileinfo.set(2,tileno,colour+64,0);
}
WRITE16_MEMBER(shadfrce_state::bg1videoram_w)