summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/atarig42.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/atarig42.cpp')
-rw-r--r--src/mame/video/atarig42.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/atarig42.cpp b/src/mame/video/atarig42.cpp
index aa427b3d088..bf971e011af 100644
--- a/src/mame/video/atarig42.cpp
+++ b/src/mame/video/atarig42.cpp
@@ -39,7 +39,7 @@ TILE_GET_INFO_MEMBER(atarig42_state::get_alpha_tile_info)
int code = data & 0xfff;
int color = (data >> 12) & 0x0f;
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);
}
@@ -48,7 +48,7 @@ TILE_GET_INFO_MEMBER(atarig42_state::get_playfield_tile_info)
uint16_t data = m_playfield_tilemap->basemem_read(tile_index);
int code = (m_playfield_tile_bank << 12) | (data & 0xfff);
int color = (m_playfield_base >> 5) + ((m_playfield_color_bank << 3) & 0x18) + ((data >> 12) & 7);
- SET_TILE_INFO_MEMBER(0, code, color, (data >> 15) & 1);
+ tileinfo.set(0, code, color, (data >> 15) & 1);
tileinfo.category = (m_playfield_color_bank >> 2) & 7;
}