summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/blstroid.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/blstroid.cpp')
-rw-r--r--src/mame/video/blstroid.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/blstroid.cpp b/src/mame/video/blstroid.cpp
index 3eb2ef5bde1..3be7deda4b9 100644
--- a/src/mame/video/blstroid.cpp
+++ b/src/mame/video/blstroid.cpp
@@ -24,7 +24,7 @@ TILE_GET_INFO_MEMBER(blstroid_state::get_playfield_tile_info)
uint16_t data = m_playfield_tilemap->basemem_read(tile_index);
int code = data & 0x1fff;
int color = (data >> 13) & 0x07;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}