summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/karnov.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/karnov.cpp')
-rw-r--r--src/mame/video/karnov.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/karnov.cpp b/src/mame/video/karnov.cpp
index 353ce1c4809..ce267b1bfbb 100644
--- a/src/mame/video/karnov.cpp
+++ b/src/mame/video/karnov.cpp
@@ -32,7 +32,7 @@ uint32_t karnov_state::screen_update(screen_device &screen, bitmap_ind16 &bitmap
TILE_GET_INFO_MEMBER(karnov_state::get_fix_tile_info)
{
int tile = m_videoram[tile_index];
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
tile & 0xfff,
tile >> 14,
0);
@@ -41,7 +41,7 @@ TILE_GET_INFO_MEMBER(karnov_state::get_fix_tile_info)
TILE_GET_INFO_MEMBER(karnov_state::get_bg_tile_info)
{
int tile = m_pf_data[tile_index];
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
tile & 0x7ff,
tile >> 12,
0);