summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/gcpinbal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/gcpinbal.cpp')
-rw-r--r--src/mame/video/gcpinbal.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/gcpinbal.cpp b/src/mame/video/gcpinbal.cpp
index f6a87c0901b..4e251129f33 100644
--- a/src/mame/video/gcpinbal.cpp
+++ b/src/mame/video/gcpinbal.cpp
@@ -13,7 +13,7 @@ TILE_GET_INFO_MEMBER(gcpinbal_state::get_bg0_tile_info)
const u16 tile = m_tilemapram[0 + tile_index * 2];
const u16 attr = m_tilemapram[1 + tile_index * 2];
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
(tile & 0xfff) + m_bg0_gfxset,
(attr & 0x1f),
TILE_FLIPYX((attr & 0x300) >> 8));
@@ -24,7 +24,7 @@ TILE_GET_INFO_MEMBER(gcpinbal_state::get_bg1_tile_info)
const u16 tile = m_tilemapram[0x800 + tile_index * 2];
const u16 attr = m_tilemapram[0x801 + tile_index * 2];
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
(tile & 0xfff) + 0x2000 + m_bg1_gfxset,
(attr & 0x1f) + 0x30,
TILE_FLIPYX((attr & 0x300) >> 8));
@@ -33,7 +33,7 @@ TILE_GET_INFO_MEMBER(gcpinbal_state::get_bg1_tile_info)
TILE_GET_INFO_MEMBER(gcpinbal_state::get_fg_tile_info)
{
const u16 tile = m_tilemapram[0x1000 + tile_index];
- SET_TILE_INFO_MEMBER(1, (tile & 0xfff), (tile >> 12), 0);
+ tileinfo.set(1, (tile & 0xfff), (tile >> 12), 0);
}
void gcpinbal_state::video_start()