summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/sub.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/sub.cpp')
-rw-r--r--src/mame/video/sub.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/sub.cpp b/src/mame/video/sub.cpp
index fe431aca7f2..babdb1b72bf 100644
--- a/src/mame/video/sub.cpp
+++ b/src/mame/video/sub.cpp
@@ -36,7 +36,7 @@ TILE_GET_INFO_MEMBER(sub_state::get_tile_info)
int code = m_vram[tile_index] | ((m_attr[tile_index]&0xe0)<<3);
int color = (m_attr[tile_index]&0x1f)+0x40;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
WRITE8_MEMBER(sub_state::vram_w)