summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/baraduke.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/baraduke.cpp')
-rw-r--r--src/mame/video/baraduke.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/baraduke.cpp b/src/mame/video/baraduke.cpp
index 6ebc7730183..44811a156ec 100644
--- a/src/mame/video/baraduke.cpp
+++ b/src/mame/video/baraduke.cpp
@@ -76,7 +76,7 @@ TILEMAP_MAPPER_MEMBER(baraduke_state::tx_tilemap_scan)
TILE_GET_INFO_MEMBER(baraduke_state::tx_get_tile_info)
{
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
m_textram[tile_index],
(m_textram[tile_index+0x400] << 2) & 0x1ff,
0);
@@ -87,7 +87,7 @@ TILE_GET_INFO_MEMBER(baraduke_state::get_tile_info0)
int code = m_videoram[2*tile_index];
int attr = m_videoram[2*tile_index + 1];
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
code + ((attr & 0x03) << 8),
attr,
0);
@@ -98,7 +98,7 @@ TILE_GET_INFO_MEMBER(baraduke_state::get_tile_info1)
int code = m_videoram[0x1000 + 2*tile_index];
int attr = m_videoram[0x1000 + 2*tile_index + 1];
- SET_TILE_INFO_MEMBER(2,
+ tileinfo.set(2,
code + ((attr & 0x03) << 8),
attr,
0);