summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/cop01.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/cop01.cpp')
-rw-r--r--src/mame/video/cop01.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/cop01.cpp b/src/mame/video/cop01.cpp
index d6cfd73b368..363585d2469 100644
--- a/src/mame/video/cop01.cpp
+++ b/src/mame/video/cop01.cpp
@@ -77,14 +77,14 @@ TILE_GET_INFO_MEMBER(cop01_state::get_bg_tile_info)
if (attr & 0x10)
pri = 0;
- SET_TILE_INFO_MEMBER(1, tile + ((attr & 0x03) << 8), (attr & 0x1c) >> 2, 0);
+ tileinfo.set(1, tile + ((attr & 0x03) << 8), (attr & 0x1c) >> 2, 0);
tileinfo.group = pri;
}
TILE_GET_INFO_MEMBER(cop01_state::get_fg_tile_info)
{
int tile = m_fgvideoram[tile_index];
- SET_TILE_INFO_MEMBER(0, tile, 0, 0);
+ tileinfo.set(0, tile, 0, 0);
}