summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/champbas.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/champbas.cpp')
-rw-r--r--src/mame/video/champbas.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/champbas.cpp b/src/mame/video/champbas.cpp
index 4a2b577c0d6..21d1963200a 100644
--- a/src/mame/video/champbas.cpp
+++ b/src/mame/video/champbas.cpp
@@ -138,7 +138,7 @@ TILE_GET_INFO_MEMBER(champbas_state::champbas_get_bg_tile_info)
int const code = m_vram[tile_index] | (m_gfx_bank << 8);
int const color = (m_vram[tile_index + 0x400] & 0x1f) | 0x20;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
TILE_GET_INFO_MEMBER(exctsccr_state::exctsccr_get_bg_tile_info)
@@ -146,7 +146,7 @@ TILE_GET_INFO_MEMBER(exctsccr_state::exctsccr_get_bg_tile_info)
int const code = m_vram[tile_index] | (m_gfx_bank << 8);
int const color = m_vram[tile_index + 0x400] & 0x0f;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}