summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/vindictr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/vindictr.cpp')
-rw-r--r--src/mame/video/vindictr.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/vindictr.cpp b/src/mame/video/vindictr.cpp
index e4063a1fee1..d25988ccfa2 100644
--- a/src/mame/video/vindictr.cpp
+++ b/src/mame/video/vindictr.cpp
@@ -23,7 +23,7 @@ TILE_GET_INFO_MEMBER(vindictr_state::get_alpha_tile_info)
int code = data & 0x3ff;
int color = ((data >> 10) & 0x0f) | ((data >> 9) & 0x20);
int opaque = data & 0x8000;
- SET_TILE_INFO_MEMBER(1, code, color, opaque ? TILE_FORCE_LAYER0 : 0);
+ tileinfo.set(1, code, color, opaque ? TILE_FORCE_LAYER0 : 0);
}
@@ -32,7 +32,7 @@ TILE_GET_INFO_MEMBER(vindictr_state::get_playfield_tile_info)
uint16_t data = m_playfield_tilemap->basemem_read(tile_index);
int code = (m_playfield_tile_bank * 0x1000) + (data & 0xfff);
int color = 0x10 + 2 * ((data >> 12) & 7);
- SET_TILE_INFO_MEMBER(0, code, color, (data >> 15) & 1);
+ tileinfo.set(0, code, color, (data >> 15) & 1);
}