summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/powerins.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/powerins.cpp')
-rw-r--r--src/mame/video/powerins.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/powerins.cpp b/src/mame/video/powerins.cpp
index 18accbb4169..066cd08a64e 100644
--- a/src/mame/video/powerins.cpp
+++ b/src/mame/video/powerins.cpp
@@ -99,7 +99,7 @@ Offset:
TILE_GET_INFO_MEMBER(powerins_state::get_tile_info_0)
{
uint16_t code = m_vram[0][tile_index];
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
(code & 0x07ff) | (m_tile_bank << 11),
((code & 0xf000) >> 12) | ((code & 0x0800) >> 7),
0);
@@ -130,7 +130,7 @@ Offset:
TILE_GET_INFO_MEMBER(powerins_state::get_tile_info_1)
{
uint16_t code = m_vram[1][tile_index];
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
code & 0x0fff,
(code & 0xf000) >> 12,
0);