summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/oneshot.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/oneshot.cpp')
-rw-r--r--src/mame/video/oneshot.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/oneshot.cpp b/src/mame/video/oneshot.cpp
index 4ab2451c528..df08b6923a6 100644
--- a/src/mame/video/oneshot.cpp
+++ b/src/mame/video/oneshot.cpp
@@ -11,7 +11,7 @@ TILE_GET_INFO_MEMBER(oneshot_state::get_bg_tile_info)
{
const u32 tileno = m_bg_videoram[tile_index * 2 + 1];
- SET_TILE_INFO_MEMBER(0, tileno, 0, 0);
+ tileinfo.set(0, tileno, 0, 0);
}
void oneshot_state::bg_videoram_w(offs_t offset, u16 data, u16 mem_mask)
@@ -25,7 +25,7 @@ TILE_GET_INFO_MEMBER(oneshot_state::get_mid_tile_info)
{
const u32 tileno = m_mid_videoram[tile_index * 2 + 1];
- SET_TILE_INFO_MEMBER(0, tileno, 2, 0);
+ tileinfo.set(0, tileno, 2, 0);
}
void oneshot_state::mid_videoram_w(offs_t offset, u16 data, u16 mem_mask)
@@ -40,7 +40,7 @@ TILE_GET_INFO_MEMBER(oneshot_state::get_fg_tile_info)
{
const u32 tileno = m_fg_videoram[tile_index * 2 + 1];
- SET_TILE_INFO_MEMBER(0, tileno, 3, 0);
+ tileinfo.set(0, tileno, 3, 0);
}
void oneshot_state::fg_videoram_w(offs_t offset, u16 data, u16 mem_mask)