summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/skullxbo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/skullxbo.cpp')
-rw-r--r--src/mame/video/skullxbo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/skullxbo.cpp b/src/mame/video/skullxbo.cpp
index f3497502bab..84432d4ffb7 100644
--- a/src/mame/video/skullxbo.cpp
+++ b/src/mame/video/skullxbo.cpp
@@ -23,7 +23,7 @@ TILE_GET_INFO_MEMBER(skullxbo_state::get_alpha_tile_info)
int code = (data ^ 0x400) & 0x7ff;
int color = (data >> 11) & 0x0f;
int opaque = data & 0x8000;
- SET_TILE_INFO_MEMBER(2, code, color, opaque ? TILE_FORCE_LAYER0 : 0);
+ tileinfo.set(2, code, color, opaque ? TILE_FORCE_LAYER0 : 0);
}
@@ -33,7 +33,7 @@ TILE_GET_INFO_MEMBER(skullxbo_state::get_playfield_tile_info)
uint16_t data2 = m_playfield_tilemap->extmem_read(tile_index) & 0xff;
int code = data1 & 0x7fff;
int color = data2 & 0x0f;
- SET_TILE_INFO_MEMBER(1, code, color, (data1 >> 15) & 1);
+ tileinfo.set(1, code, color, (data1 >> 15) & 1);
}