summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/raiden2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/raiden2.cpp')
-rw-r--r--src/mame/video/raiden2.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/raiden2.cpp b/src/mame/video/raiden2.cpp
index a7237a49c6b..c438267e519 100644
--- a/src/mame/video/raiden2.cpp
+++ b/src/mame/video/raiden2.cpp
@@ -260,7 +260,7 @@ TILE_GET_INFO_MEMBER(raiden2_state::get_back_tile_info)
tile = (tile & 0xfff) | (m_bg_bank << 12);
- SET_TILE_INFO_MEMBER(1,tile+0x0000,color,0);
+ tileinfo.set(1,tile+0x0000,color,0);
}
TILE_GET_INFO_MEMBER(raiden2_state::get_mid_tile_info)
@@ -270,7 +270,7 @@ TILE_GET_INFO_MEMBER(raiden2_state::get_mid_tile_info)
tile = (tile & 0xfff) | (m_mid_bank << 12);
- SET_TILE_INFO_MEMBER(1,tile,color,0);
+ tileinfo.set(1,tile,color,0);
}
TILE_GET_INFO_MEMBER(raiden2_state::get_fore_tile_info)
@@ -280,7 +280,7 @@ TILE_GET_INFO_MEMBER(raiden2_state::get_fore_tile_info)
tile = (tile & 0xfff) | (m_fg_bank << 12);
- SET_TILE_INFO_MEMBER(1,tile,color,0);
+ tileinfo.set(1,tile,color,0);
}
TILE_GET_INFO_MEMBER(raiden2_state::get_text_tile_info)
@@ -290,7 +290,7 @@ TILE_GET_INFO_MEMBER(raiden2_state::get_text_tile_info)
tile &= 0xfff;
- SET_TILE_INFO_MEMBER(0,tile + m_tx_bank * 0x1000,color,0);
+ tileinfo.set(0,tile + m_tx_bank * 0x1000,color,0);
}
void raiden2_state::video_start()