summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/appoooh.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/appoooh.cpp')
-rw-r--r--src/mame/video/appoooh.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/appoooh.cpp b/src/mame/video/appoooh.cpp
index f0e344d0dfa..655f2e25aad 100644
--- a/src/mame/video/appoooh.cpp
+++ b/src/mame/video/appoooh.cpp
@@ -98,7 +98,7 @@ TILE_GET_INFO_MEMBER(appoooh_state::get_fg_tile_info)
{
int code = m_fg_videoram[tile_index] + 256 * ((m_fg_colorram[tile_index] >> 5) & 7);
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
code,
m_fg_colorram[tile_index] & 0x0f,
(m_fg_colorram[tile_index] & 0x10 ) ? TILEMAP_FLIPX : 0
@@ -109,7 +109,7 @@ TILE_GET_INFO_MEMBER(appoooh_state::get_bg_tile_info)
{
int code = m_bg_videoram[tile_index] + 256 * ((m_bg_colorram[tile_index] >> 5) & 7);
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
code,
m_bg_colorram[tile_index] & 0x0f,
(m_bg_colorram[tile_index] & 0x10 ) ? TILEMAP_FLIPX : 0