summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/raiden.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/raiden.cpp')
-rw-r--r--src/mame/video/raiden.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/raiden.cpp b/src/mame/video/raiden.cpp
index 0fba5069bba..1ffc38affff 100644
--- a/src/mame/video/raiden.cpp
+++ b/src/mame/video/raiden.cpp
@@ -201,7 +201,7 @@ TILE_GET_INFO_MEMBER(raiden_state::get_back_tile_info)
int tile = tiledata & 0x0fff;
int color = tiledata >> 12;
- SET_TILE_INFO_MEMBER(1, tile, color, 0);
+ tileinfo.set(1, tile, color, 0);
}
TILE_GET_INFO_MEMBER(raiden_state::get_fore_tile_info)
@@ -210,7 +210,7 @@ TILE_GET_INFO_MEMBER(raiden_state::get_fore_tile_info)
int tile = tiledata & 0x0fff;
int color = tiledata >> 12;
- SET_TILE_INFO_MEMBER(2, tile, color, 0);
+ tileinfo.set(2, tile, color, 0);
}
TILE_GET_INFO_MEMBER(raiden_state::get_text_tile_info)
@@ -219,7 +219,7 @@ TILE_GET_INFO_MEMBER(raiden_state::get_text_tile_info)
int tile = (tiledata & 0xff) | ((tiledata >> 6) & 0x300);
int color = (tiledata >> 8) & 0x0f;
- SET_TILE_INFO_MEMBER(0, tile, color, 0);
+ tileinfo.set(0, tile, color, 0);
}
void raiden_state::common_video_start()