summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tankbust.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/tankbust.cpp')
-rw-r--r--src/mame/video/tankbust.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/tankbust.cpp b/src/mame/video/tankbust.cpp
index f79167032c9..9440d3d0c9a 100644
--- a/src/mame/video/tankbust.cpp
+++ b/src/mame/video/tankbust.cpp
@@ -52,7 +52,7 @@ TILE_GET_INFO_MEMBER(tankbust_state::get_bg_tile_info)
/* priority bg/sprites (1 = this bg tile on top of sprites) */
tileinfo.category = (attr & 0x08) >> 3;
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
code,
(color&4) | ((color&2)>>1) | ((color&1)<<1),
0);
@@ -63,7 +63,7 @@ TILE_GET_INFO_MEMBER(tankbust_state::get_txt_tile_info)
int code = m_txtram[tile_index];
int color = ((code>>6) & 0x03);
- SET_TILE_INFO_MEMBER(2,
+ tileinfo.set(2,
code & 0x3f,
((color&2)>>1) | ((color&1)<<1),
0);