summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/gng.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/gng.cpp')
-rw-r--r--src/mame/video/gng.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/gng.cpp b/src/mame/video/gng.cpp
index 8fbed82cb64..be9f16d243b 100644
--- a/src/mame/video/gng.cpp
+++ b/src/mame/video/gng.cpp
@@ -21,7 +21,7 @@
TILE_GET_INFO_MEMBER(gng_state::get_fg_tile_info)
{
uint8_t attr = m_fgvideoram[tile_index + 0x400];
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
m_fgvideoram[tile_index] + ((attr & 0xc0) << 2),
attr & 0x0f,
TILE_FLIPYX((attr & 0x30) >> 4));
@@ -30,7 +30,7 @@ TILE_GET_INFO_MEMBER(gng_state::get_fg_tile_info)
TILE_GET_INFO_MEMBER(gng_state::get_bg_tile_info)
{
uint8_t attr = m_bgvideoram[tile_index + 0x400];
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
m_bgvideoram[tile_index] + ((attr & 0xc0) << 2),
attr & 0x07,
TILE_FLIPYX((attr & 0x30) >> 4));