diff options
author | 2020-03-11 15:47:30 +1100 | |
---|---|---|
committer | 2020-03-11 15:47:30 +1100 | |
commit | 9733f5cf3df1255566dc147540a8d6ceab4adb6d (patch) | |
tree | 637f1e69a2b520771888635337ea4e051d7fa797 /src/mame/drivers/pipeline.cpp | |
parent | e7b33bd5e22adfc7422c969a0a2b6400c6563394 (diff) |
tilemap: that macro has contributed nothing but obfuscation since we moved to C++
Diffstat (limited to 'src/mame/drivers/pipeline.cpp')
-rw-r--r-- | src/mame/drivers/pipeline.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/pipeline.cpp b/src/mame/drivers/pipeline.cpp index 65d76e11623..9bee07159fe 100644 --- a/src/mame/drivers/pipeline.cpp +++ b/src/mame/drivers/pipeline.cpp @@ -148,14 +148,14 @@ void pipeline_state::machine_start() TILE_GET_INFO_MEMBER(pipeline_state::get_tile_info) { int code = m_vram2[tile_index] + m_vram2[tile_index + 0x800] * 256; - SET_TILE_INFO_MEMBER(0, code, 0, 0); + tileinfo.set(0, code, 0, 0); } TILE_GET_INFO_MEMBER(pipeline_state::get_tile_info2) { int code = m_vram1[tile_index] + ((m_vram1[tile_index + 0x800] >> 4)) * 256; int color = ((m_vram1[tile_index + 0x800]) & 0xf); - SET_TILE_INFO_MEMBER(1, code, color, 0); + tileinfo.set(1, code, color, 0); } void pipeline_state::video_start() |