summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/cbasebal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/cbasebal.cpp')
-rw-r--r--src/mame/video/cbasebal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/cbasebal.cpp b/src/mame/video/cbasebal.cpp
index 71805e4c938..aa370ac3de7 100644
--- a/src/mame/video/cbasebal.cpp
+++ b/src/mame/video/cbasebal.cpp
@@ -13,7 +13,7 @@
TILE_GET_INFO_MEMBER(cbasebal_state::get_bg_tile_info)
{
uint8_t attr = m_scrollram[2 * tile_index + 1];
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
m_scrollram[2 * tile_index] + ((attr & 0x07) << 8) + 0x800 * m_tilebank,
(attr & 0xf0) >> 4,
(attr & 0x08) ? TILE_FLIPX : 0);
@@ -22,7 +22,7 @@ TILE_GET_INFO_MEMBER(cbasebal_state::get_bg_tile_info)
TILE_GET_INFO_MEMBER(cbasebal_state::get_fg_tile_info)
{
uint8_t attr = m_textram[tile_index + 0x800];
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
m_textram[tile_index] + ((attr & 0xf0) << 4),
attr & 0x07,
(attr & 0x08) ? TILE_FLIPX : 0);