summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/contra.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/contra.cpp')
-rw-r--r--src/mame/video/contra.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/contra.cpp b/src/mame/video/contra.cpp
index 5d3fc19c191..b8cc350b9ab 100644
--- a/src/mame/video/contra.cpp
+++ b/src/mame/video/contra.cpp
@@ -75,7 +75,7 @@ TILE_GET_INFO_MEMBER(contra_state::get_fg_tile_info)
bank = (bank & ~(mask << 1)) | ((ctrl_4 & mask) << 1);
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
m_fg_vram[tile_index] + bank * 256,
((ctrl_6 & 0x30) * 2 + 16) + (attr & 7),
0);
@@ -103,7 +103,7 @@ TILE_GET_INFO_MEMBER(contra_state::get_bg_tile_info)
// 2009-12 FP: TO BE VERIFIED - old code used ctrl4 from chip 0?!?
bank = (bank & ~(mask << 1)) | ((ctrl_4 & mask) << 1);
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
m_bg_vram[tile_index] + bank * 256,
((ctrl_6 & 0x30) * 2 + 16) + (attr & 7),
0);
@@ -124,7 +124,7 @@ TILE_GET_INFO_MEMBER(contra_state::get_tx_tile_info)
((attr >> (bit2 )) & 0x08) |
((attr >> (bit3 - 1)) & 0x10);
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
m_tx_vram[tile_index] + bank * 256,
((ctrl_6 & 0x30) * 2 + 16) + (attr & 7),
0);