summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/taito_l.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/taito_l.cpp')
-rw-r--r--src/mame/video/taito_l.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/taito_l.cpp b/src/mame/video/taito_l.cpp
index 6035969cccb..b79a18a976f 100644
--- a/src/mame/video/taito_l.cpp
+++ b/src/mame/video/taito_l.cpp
@@ -21,7 +21,7 @@ TILE_GET_INFO_MEMBER(taitol_state::get_tile_info)
| ((m_bankc[(attr & 0xc) >> 2]) << 10)
| (m_horshoes_gfxbank << 12);
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
code,
(attr & 0xf0) >> 4,
0);
@@ -32,7 +32,7 @@ TILE_GET_INFO_MEMBER(taitol_state::get_tx_tile_info)
int attr = m_vram[2 * tile_index + 0xa000 + 1];
int code = m_vram[2 * tile_index + 0xa000] | ((attr & 0x07) << 8);
- SET_TILE_INFO_MEMBER(2,
+ tileinfo.set(2,
code,
(attr & 0xf0) >> 4,
0);