summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/twin16.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/twin16.cpp')
-rw-r--r--src/mame/video/twin16.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/twin16.cpp b/src/mame/video/twin16.cpp
index ebba2d53d93..708feae1986 100644
--- a/src/mame/video/twin16.cpp
+++ b/src/mame/video/twin16.cpp
@@ -390,7 +390,7 @@ TILE_GET_INFO_MEMBER(twin16_state::fix_tile_info)
if (attr&0x2000) flags|=TILE_FLIPX;
if (attr&0x4000) flags|=TILE_FLIPY;
- SET_TILE_INFO_MEMBER(0, code, color, flags);
+ tileinfo.set(0, code, color, flags);
}
void twin16_state::tile_get_info(tile_data &tileinfo, uint16_t data, int color_base)
@@ -403,7 +403,7 @@ void twin16_state::tile_get_info(tile_data &tileinfo, uint16_t data, int color_b
int color = color_base + (data >> 13);
int flags = 0;
if (m_video_register & TWIN16_TILE_FLIPY) flags |= TILE_FLIPY;
- SET_TILE_INFO_MEMBER(1, code, color, flags);
+ tileinfo.set(1, code, color, flags);
tileinfo.category = BIT(data, 15);
}
@@ -419,7 +419,7 @@ void fround_state::tile_get_info(tile_data &tileinfo, uint16_t data, int color_b
int color = color_base | (data >> 13);
int flags = 0;
if (m_video_register & TWIN16_TILE_FLIPY) flags |= TILE_FLIPY;
- SET_TILE_INFO_MEMBER(1, code, color, flags);
+ tileinfo.set(1, code, color, flags);
tileinfo.category = BIT(data, 15);
}