summaryrefslogtreecommitdiffstats
path: root/src/mame/drivers/drtomy.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/drtomy.cpp')
-rw-r--r--src/mame/drivers/drtomy.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/drtomy.cpp b/src/mame/drivers/drtomy.cpp
index 8815d96aee1..d5c6f0cb7dc 100644
--- a/src/mame/drivers/drtomy.cpp
+++ b/src/mame/drivers/drtomy.cpp
@@ -68,7 +68,7 @@ TILE_GET_INFO_MEMBER(drtomy_state::get_tile_info_fg)
{
int code = m_videoram_fg[tile_index] & 0xfff;
int color = (m_videoram_fg[tile_index] & 0xf000) >> 12;
- SET_TILE_INFO_MEMBER(2, code, color, 0);
+ tileinfo.set(2, code, color, 0);
}
@@ -76,7 +76,7 @@ TILE_GET_INFO_MEMBER(drtomy_state::get_tile_info_bg)
{
int code = m_videoram_bg[tile_index] & 0xfff;
int color = (m_videoram_bg[tile_index] & 0xf000) >> 12;
- SET_TILE_INFO_MEMBER(1, code, color, 0);
+ tileinfo.set(1, code, color, 0);
}