summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/wgp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/wgp.cpp')
-rw-r--r--src/mame/video/wgp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/wgp.cpp b/src/mame/video/wgp.cpp
index d9f7160bc70..50d77ff8f8e 100644
--- a/src/mame/video/wgp.cpp
+++ b/src/mame/video/wgp.cpp
@@ -14,7 +14,7 @@ TILE_GET_INFO_MEMBER(wgp_state::get_piv_tile_info)
const u16 tilenum = m_pivram[tile_index + Offset]; /* 3 blocks of $2000 */
const u16 attr = m_pivram[tile_index + Offset + 0x8000]; /* 3 blocks of $2000 */
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
tilenum & 0x3fff,
(attr & 0x3f), /* attr & 0x1 ?? */
TILE_FLIPYX((attr & 0xc0) >> 6));