summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/timeplt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/timeplt.cpp')
-rw-r--r--src/mame/video/timeplt.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/timeplt.cpp b/src/mame/video/timeplt.cpp
index 7e0224e7214..884cd33d967 100644
--- a/src/mame/video/timeplt.cpp
+++ b/src/mame/video/timeplt.cpp
@@ -99,7 +99,7 @@ TILE_GET_INFO_MEMBER(timeplt_state::get_tile_info)
int flags = TILE_FLIPYX(attr >> 6);
tileinfo.category = (attr & 0x10) >> 4;
- SET_TILE_INFO_MEMBER(0, code, color, flags);
+ tileinfo.set(0, code, color, flags);
}
TILE_GET_INFO_MEMBER(timeplt_state::get_chkun_tile_info)
@@ -110,7 +110,7 @@ TILE_GET_INFO_MEMBER(timeplt_state::get_chkun_tile_info)
int flags = 0;//TILE_FLIPYX(attr >> 6);
tileinfo.category = (attr & 0x80) >> 7;
- SET_TILE_INFO_MEMBER(0, code, color, flags);
+ tileinfo.set(0, code, color, flags);
}