summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/galaga.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/galaga.cpp')
-rw-r--r--src/mame/video/galaga.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/galaga.cpp b/src/mame/video/galaga.cpp
index edfa4499b31..6558fd62b3a 100644
--- a/src/mame/video/galaga.cpp
+++ b/src/mame/video/galaga.cpp
@@ -121,7 +121,7 @@ TILE_GET_INFO_MEMBER(galaga_state::get_tile_info)
We reproduce this here, but since the tilemap system automatically flips
characters when screen is flipped, we have to flip them back. */
int color = m_videoram[tile_index + 0x400] & 0x3f;
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
(m_videoram[tile_index] & 0x7f) | (flip_screen() ? 0x80 : 0) | (m_galaga_gfxbank << 8),
color,
flip_screen() ? TILE_FLIPX : 0);