summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/mcr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/mcr.cpp')
-rw-r--r--src/mame/video/mcr.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/mcr.cpp b/src/mame/video/mcr.cpp
index 1a0d21a1475..1afb17da42c 100644
--- a/src/mame/video/mcr.cpp
+++ b/src/mame/video/mcr.cpp
@@ -25,7 +25,7 @@
*/
TILE_GET_INFO_MEMBER(mcr_state::mcr_90009_get_tile_info)
{
- SET_TILE_INFO_MEMBER(0, m_videoram[tile_index], 0, 0);
+ tileinfo.set(0, m_videoram[tile_index], 0, 0);
/* sprite color base is constant 0x10 */
tileinfo.category = 1;
@@ -50,7 +50,7 @@ TILE_GET_INFO_MEMBER(mcr_state::mcr_90010_get_tile_info)
int data = m_videoram[tile_index * 2] | (m_videoram[tile_index * 2 + 1] << 8);
int code = data & 0x1ff;
int color = (data >> 11) & 3;
- SET_TILE_INFO_MEMBER(0, code, color, TILE_FLIPYX(data >> 9));
+ tileinfo.set(0, code, color, TILE_FLIPYX(data >> 9));
/* sprite color base comes from the top 2 bits */
tileinfo.category = (data >> 14) & 3;
@@ -75,7 +75,7 @@ TILE_GET_INFO_MEMBER(mcr_state::mcr_91490_get_tile_info)
int data = m_videoram[tile_index * 2] | (m_videoram[tile_index * 2 + 1] << 8);
int code = data & 0x3ff;
int color = (data >> 12) & 3;
- SET_TILE_INFO_MEMBER(0, code, color, TILE_FLIPYX(data >> 10));
+ tileinfo.set(0, code, color, TILE_FLIPYX(data >> 10));
/* sprite color base might come from the top 2 bits */
tileinfo.category = (data >> 14) & 3;