summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/taitojc.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/taitojc.cpp')
-rw-r--r--src/mame/video/taitojc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/taitojc.cpp b/src/mame/video/taitojc.cpp
index 018709783d8..ebdbee5dd6f 100644
--- a/src/mame/video/taitojc.cpp
+++ b/src/mame/video/taitojc.cpp
@@ -28,7 +28,7 @@ TILE_GET_INFO_MEMBER(taitojc_state::taitojc_tile_info)
uint32_t val = m_tile_ram[tile_index];
int color = (val >> 22) & 0xff;
int tile = (val >> 2) & 0x7f;
- SET_TILE_INFO_MEMBER(m_gfx_index, tile, color, 0);
+ tileinfo.set(m_gfx_index, tile, color, 0);
}
READ32_MEMBER(taitojc_state::taitojc_palette_r)