summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/speedspn.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/speedspn.cpp')
-rw-r--r--src/mame/video/speedspn.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/speedspn.cpp b/src/mame/video/speedspn.cpp
index 22d01989145..4fcb756fa25 100644
--- a/src/mame/video/speedspn.cpp
+++ b/src/mame/video/speedspn.cpp
@@ -11,7 +11,7 @@ TILE_GET_INFO_MEMBER(speedspn_state::get_tile_info)
int code = m_vidram[tile_index*2+1] | (m_vidram[tile_index*2] << 8);
int attr = m_attram[tile_index^0x400];
- SET_TILE_INFO_MEMBER(0,code,attr & 0x3f,(attr & 0x80) ? TILE_FLIPX : 0);
+ tileinfo.set(0,code,attr & 0x3f,(attr & 0x80) ? TILE_FLIPX : 0);
}
void speedspn_state::video_start()