summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/playmark.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/playmark.cpp')
-rw-r--r--src/mame/video/playmark.cpp18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mame/video/playmark.cpp b/src/mame/video/playmark.cpp
index 7294bc50ee6..becc97f0b06 100644
--- a/src/mame/video/playmark.cpp
+++ b/src/mame/video/playmark.cpp
@@ -15,14 +15,14 @@ TILE_GET_INFO_MEMBER(playmark_state::bigtwin_get_tx_tile_info)
{
uint16_t code = m_videoram1[2 * tile_index];
uint16_t color = m_videoram1[2 * tile_index + 1];
- SET_TILE_INFO_MEMBER(2, code, color, 0);
+ tileinfo.set(2, code, color, 0);
}
TILE_GET_INFO_MEMBER(playmark_state::bigtwin_get_fg_tile_info)
{
uint16_t code = m_videoram2[2 * tile_index];
uint16_t color = m_videoram2[2 * tile_index + 1];
- SET_TILE_INFO_MEMBER(1, code, color, 0);
+ tileinfo.set(1, code, color, 0);
}
@@ -31,7 +31,7 @@ TILE_GET_INFO_MEMBER(playmark_state::wbeachvl_get_tx_tile_info)
uint16_t code = m_videoram1[2 * tile_index];
uint16_t color = m_videoram1[2 * tile_index + 1];
- SET_TILE_INFO_MEMBER(2, code, (color >> 2), 0);
+ tileinfo.set(2, code, (color >> 2), 0);
}
TILE_GET_INFO_MEMBER(playmark_state::wbeachvl_get_fg_tile_info)
@@ -39,7 +39,7 @@ TILE_GET_INFO_MEMBER(playmark_state::wbeachvl_get_fg_tile_info)
uint16_t code = m_videoram2[2 * tile_index];
uint16_t color = m_videoram2[2 * tile_index + 1];
- SET_TILE_INFO_MEMBER(1, (code & 0x7fff), (color >> 2) + 8, (code & 0x8000) ? TILE_FLIPX : 0);
+ tileinfo.set(1, (code & 0x7fff), (color >> 2) + 8, (code & 0x8000) ? TILE_FLIPX : 0);
}
TILE_GET_INFO_MEMBER(playmark_state::wbeachvl_get_bg_tile_info)
@@ -47,7 +47,7 @@ TILE_GET_INFO_MEMBER(playmark_state::wbeachvl_get_bg_tile_info)
uint16_t code = m_videoram3[2 * tile_index];
uint16_t color = m_videoram3[2 * tile_index + 1];
- SET_TILE_INFO_MEMBER(1, (code & 0x7fff), (color >> 2), (code & 0x8000) ? TILE_FLIPX : 0);
+ tileinfo.set(1, (code & 0x7fff), (color >> 2), (code & 0x8000) ? TILE_FLIPX : 0);
}
@@ -56,7 +56,7 @@ TILE_GET_INFO_MEMBER(playmark_state::hrdtimes_get_tx_tile_info)
int code = m_videoram1[tile_index] & 0x0fff;
int colr = m_videoram1[tile_index] & 0xe000;
- SET_TILE_INFO_MEMBER(3, code, (colr >> 13), 0);
+ tileinfo.set(3, code, (colr >> 13), 0);
}
TILE_GET_INFO_MEMBER(playmark_state::hrdtimes_get_fg_tile_info)
@@ -64,7 +64,7 @@ TILE_GET_INFO_MEMBER(playmark_state::hrdtimes_get_fg_tile_info)
int code = m_videoram2[tile_index] & 0x1fff;
int colr = m_videoram2[tile_index] & 0xe000;
- SET_TILE_INFO_MEMBER(2, code, (colr >> 13) + 8, 0);
+ tileinfo.set(2, code, (colr >> 13) + 8, 0);
}
TILE_GET_INFO_MEMBER(playmark_state::hrdtimes_get_bg_tile_info)
@@ -72,7 +72,7 @@ TILE_GET_INFO_MEMBER(playmark_state::hrdtimes_get_bg_tile_info)
int code = m_videoram3[tile_index] & 0x1fff;
int colr = m_videoram3[tile_index] & 0xe000;
- SET_TILE_INFO_MEMBER(1, code, (colr >> 13), 0);
+ tileinfo.set(1, code, (colr >> 13), 0);
}
@@ -81,7 +81,7 @@ TILE_GET_INFO_MEMBER(playmark_state::bigtwinb_get_tx_tile_info)
int code = m_videoram1[tile_index] & 0x0fff;
int colr = m_videoram1[tile_index] & 0xf000;
- SET_TILE_INFO_MEMBER(3, code, (colr >> 12), 0);
+ tileinfo.set(3, code, (colr >> 12), 0);
}
/***************************************************************************