summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/tehkanwc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/tehkanwc.cpp')
-rw-r--r--src/mame/video/tehkanwc.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/tehkanwc.cpp b/src/mame/video/tehkanwc.cpp
index f8d3341c66d..107cd6182f7 100644
--- a/src/mame/video/tehkanwc.cpp
+++ b/src/mame/video/tehkanwc.cpp
@@ -72,7 +72,7 @@ TILE_GET_INFO_MEMBER(tehkanwc_state::get_bg_tile_info)
int color = attr & 0x0f;
int flags = ((attr & 0x40) ? TILE_FLIPX : 0) | ((attr & 0x80) ? TILE_FLIPY : 0);
- SET_TILE_INFO_MEMBER(2, code, color, flags);
+ tileinfo.set(2, code, color, flags);
}
TILE_GET_INFO_MEMBER(tehkanwc_state::get_fg_tile_info)
@@ -84,7 +84,7 @@ TILE_GET_INFO_MEMBER(tehkanwc_state::get_fg_tile_info)
tileinfo.category = (attr & 0x20) ? 0 : 1;
- SET_TILE_INFO_MEMBER(0, code, color, flags);
+ tileinfo.set(0, code, color, flags);
}
void tehkanwc_state::video_start()