summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/ojankohs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/ojankohs.cpp')
-rw-r--r--src/mame/video/ojankohs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/ojankohs.cpp b/src/mame/video/ojankohs.cpp
index 00c93eebdaf..0e4c151869f 100644
--- a/src/mame/video/ojankohs.cpp
+++ b/src/mame/video/ojankohs.cpp
@@ -157,7 +157,7 @@ TILE_GET_INFO_MEMBER(ojankohs_state::ojankohs_get_tile_info)
color |= (m_gfxreg & 0xe0) >> 2;
}
- SET_TILE_INFO_MEMBER(0, tile, color, 0);
+ tileinfo.set(0, tile, color, 0);
}
TILE_GET_INFO_MEMBER(ojankohs_state::ojankoy_get_tile_info)
@@ -167,7 +167,7 @@ TILE_GET_INFO_MEMBER(ojankohs_state::ojankoy_get_tile_info)
int flipx = ((m_colorram[tile_index] & 0x40) >> 6) ? TILEMAP_FLIPX : 0;
int flipy = ((m_colorram[tile_index] & 0x80) >> 7) ? TILEMAP_FLIPY : 0;
- SET_TILE_INFO_MEMBER(0, tile, color, (flipx | flipy));
+ tileinfo.set(0, tile, color, (flipx | flipy));
}