summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/atarisy2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/atarisy2.cpp')
-rw-r--r--src/mame/video/atarisy2.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/atarisy2.cpp b/src/mame/video/atarisy2.cpp
index 2f8d509b756..25461544f2f 100644
--- a/src/mame/video/atarisy2.cpp
+++ b/src/mame/video/atarisy2.cpp
@@ -23,7 +23,7 @@ TILE_GET_INFO_MEMBER(atarisy2_state::get_alpha_tile_info)
uint16_t data = m_alpha_tilemap->basemem_read(tile_index);
int code = data & 0x3ff;
int color = (data >> 13) & 0x07;
- SET_TILE_INFO_MEMBER(2, code, color, 0);
+ tileinfo.set(2, code, color, 0);
}
@@ -32,7 +32,7 @@ TILE_GET_INFO_MEMBER(atarisy2_state::get_playfield_tile_info)
uint16_t data = m_playfield_tilemap->basemem_read(tile_index);
int code = (m_playfield_tile_bank[(data >> 10) & 1] << 10) | (data & 0x3ff);
int color = (data >> 11) & 7;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
tileinfo.category = (~data >> 14) & 3;
}