summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/dday.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/dday.cpp')
-rw-r--r--src/mame/video/dday.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/dday.cpp b/src/mame/video/dday.cpp
index 5aae1f36528..89f1872f6a5 100644
--- a/src/mame/video/dday.cpp
+++ b/src/mame/video/dday.cpp
@@ -152,7 +152,7 @@ TILE_GET_INFO_MEMBER(dday_state::get_bg_tile_info)
int code;
code = m_bgvideoram[tile_index];
- SET_TILE_INFO_MEMBER(0, code, code >> 5, 0);
+ tileinfo.set(0, code, code >> 5, 0);
}
TILE_GET_INFO_MEMBER(dday_state::get_fg_tile_info)
@@ -161,7 +161,7 @@ TILE_GET_INFO_MEMBER(dday_state::get_fg_tile_info)
flipx = m_colorram[tile_index & 0x03e0] & 0x01;
code = m_fgvideoram[flipx ? tile_index ^ 0x1f : tile_index];
- SET_TILE_INFO_MEMBER(2, code, code >> 5, flipx ? TILE_FLIPX : 0);
+ tileinfo.set(2, code, code >> 5, flipx ? TILE_FLIPX : 0);
}
TILE_GET_INFO_MEMBER(dday_state::get_text_tile_info)
@@ -169,7 +169,7 @@ TILE_GET_INFO_MEMBER(dday_state::get_text_tile_info)
int code;
code = m_textvideoram[tile_index];
- SET_TILE_INFO_MEMBER(1, code, code >> 5, 0);
+ tileinfo.set(1, code, code >> 5, 0);
}
TILE_GET_INFO_MEMBER(dday_state::get_sl_tile_info)
@@ -191,7 +191,7 @@ TILE_GET_INFO_MEMBER(dday_state::get_sl_tile_info)
/* no mirroring, draw dark spot */
code = 1;
- SET_TILE_INFO_MEMBER(3, code & 0x3f, 0, flipx ? TILE_FLIPX : 0);
+ tileinfo.set(3, code & 0x3f, 0, flipx ? TILE_FLIPX : 0);
}