summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/ddayjlc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/ddayjlc.cpp')
-rw-r--r--src/mame/drivers/ddayjlc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/ddayjlc.cpp b/src/mame/drivers/ddayjlc.cpp
index 37903e032fa..c8deb7a14c0 100644
--- a/src/mame/drivers/ddayjlc.cpp
+++ b/src/mame/drivers/ddayjlc.cpp
@@ -163,14 +163,14 @@ TILE_GET_INFO_MEMBER(ddayjlc_state::get_tile_info_bg)
color |= (attr & 0x40) >> 3;
tileinfo.category = BIT(attr,7);
- SET_TILE_INFO_MEMBER(2, code, color, 0);
+ tileinfo.set(2, code, color, 0);
}
TILE_GET_INFO_MEMBER(ddayjlc_state::get_tile_info_fg)
{
int code = m_videoram[tile_index] + (m_char_bank << 8);
- SET_TILE_INFO_MEMBER(1, code, 0, 0);
+ tileinfo.set(1, code, 0, 0);
}
void ddayjlc_state::video_start()