summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/bloodbro.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/bloodbro.cpp')
-rw-r--r--src/mame/video/bloodbro.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/bloodbro.cpp b/src/mame/video/bloodbro.cpp
index f08d881f5ff..c4cb61f5571 100644
--- a/src/mame/video/bloodbro.cpp
+++ b/src/mame/video/bloodbro.cpp
@@ -24,7 +24,7 @@
TILE_GET_INFO_MEMBER(bloodbro_state::get_bg_tile_info)
{
int code = m_bgvideoram[tile_index];
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
code & 0xfff,
(code >> 12),
0);
@@ -33,7 +33,7 @@ TILE_GET_INFO_MEMBER(bloodbro_state::get_bg_tile_info)
TILE_GET_INFO_MEMBER(bloodbro_state::get_fg_tile_info)
{
int code = m_fgvideoram[tile_index];
- SET_TILE_INFO_MEMBER(2,
+ tileinfo.set(2,
(code & 0xfff)+0x1000,
(code >> 12),
0);
@@ -42,7 +42,7 @@ TILE_GET_INFO_MEMBER(bloodbro_state::get_fg_tile_info)
TILE_GET_INFO_MEMBER(bloodbro_state::get_tx_tile_info)
{
int code = m_txvideoram[tile_index];
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
code & 0xfff,
code >> 12,
0);