summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/offtwall.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/offtwall.cpp')
-rw-r--r--src/mame/video/offtwall.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/offtwall.cpp b/src/mame/video/offtwall.cpp
index d7217b32847..f71c058acf6 100644
--- a/src/mame/video/offtwall.cpp
+++ b/src/mame/video/offtwall.cpp
@@ -23,7 +23,7 @@ TILE_GET_INFO_MEMBER(offtwall_state::get_playfield_tile_info)
uint16_t data2 = m_vad->playfield().extmem_read(tile_index) >> 8;
int code = data1 & 0x7fff;
int color = 0x10 + (data2 & 0x0f);
- SET_TILE_INFO_MEMBER(0, code, color, (data1 >> 15) & 1);
+ tileinfo.set(0, code, color, (data1 >> 15) & 1);
}