summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/snookr10.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/snookr10.cpp')
-rw-r--r--src/mame/video/snookr10.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/snookr10.cpp b/src/mame/video/snookr10.cpp
index 4dcf95c4351..e8a8f6690e0 100644
--- a/src/mame/video/snookr10.cpp
+++ b/src/mame/video/snookr10.cpp
@@ -97,7 +97,7 @@ TILE_GET_INFO_MEMBER(snookr10_state::get_bg_tile_info)
int code = attr & 0xfff;
int color = m_colorram[offs] >> 4;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
@@ -164,7 +164,7 @@ TILE_GET_INFO_MEMBER(snookr10_state::apple10_get_bg_tile_info)
int code = bitswap<16>((attr & 0xfff),15,14,13,12,8,9,10,11,0,1,2,3,4,5,6,7); /* encrypted tile matrix */
int color = m_colorram[offs] >> 4;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
@@ -231,7 +231,7 @@ TILE_GET_INFO_MEMBER(snookr10_state::crystalc_get_bg_tile_info)
int code = bitswap<16>((attr & 0xfff),15,14,13,12,0,10,5,1,7,6,9,4,3,2,8,11); /* encrypted tile matrix */
int color = m_colorram[offs] >> 4;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}