summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/lastduel.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/lastduel.cpp')
-rw-r--r--src/mame/video/lastduel.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mame/video/lastduel.cpp b/src/mame/video/lastduel.cpp
index ec09ebd9088..c6915755688 100644
--- a/src/mame/video/lastduel.cpp
+++ b/src/mame/video/lastduel.cpp
@@ -22,7 +22,7 @@ TILE_GET_INFO_MEMBER(lastduel_state::ld_get_bg_tile_info)
{
int const tile = m_vram[1][2 * tile_index] & 0x1fff;
int const color = m_vram[1][2 * tile_index + 1];
- SET_TILE_INFO_MEMBER(2,
+ tileinfo.set(2,
tile,color & 0xf,
TILE_FLIPYX((color & 0x60) >> 5));
}
@@ -31,7 +31,7 @@ TILE_GET_INFO_MEMBER(lastduel_state::ld_get_fg_tile_info)
{
int const tile = m_vram[0][2 * tile_index] & 0x1fff;
int const color = m_vram[0][2 * tile_index + 1];
- SET_TILE_INFO_MEMBER(3,
+ tileinfo.set(3,
tile,
color & 0xf,
TILE_FLIPYX((color & 0x60) >> 5));
@@ -42,7 +42,7 @@ TILE_GET_INFO_MEMBER(lastduel_state::get_bg_tile_info)
{
int const tile = m_vram[1][tile_index] & 0x1fff;
int const color = m_vram[1][tile_index + 0x0800];
- SET_TILE_INFO_MEMBER(2,
+ tileinfo.set(2,
tile,
color & 0xf,
TILE_FLIPYX((color & 0x60) >> 5));
@@ -52,7 +52,7 @@ TILE_GET_INFO_MEMBER(lastduel_state::get_fg_tile_info)
{
int const tile = m_vram[0][tile_index] & 0x1fff;
int const color = m_vram[0][tile_index + 0x0800];
- SET_TILE_INFO_MEMBER(3,
+ tileinfo.set(3,
tile,
color & 0xf,
TILE_FLIPYX((color & 0x60) >> 5));
@@ -62,7 +62,7 @@ TILE_GET_INFO_MEMBER(lastduel_state::get_fg_tile_info)
TILE_GET_INFO_MEMBER(lastduel_state::get_fix_info)
{
int const tile = m_txram[tile_index];
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
tile & 0x7ff,
tile>>12,
(tile & 0x800) ? TILE_FLIPY : 0);