summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/subsino.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/drivers/subsino.cpp')
-rw-r--r--src/mame/drivers/subsino.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/drivers/subsino.cpp b/src/mame/drivers/subsino.cpp
index 331eb20bde6..d7bdb71a56a 100644
--- a/src/mame/drivers/subsino.cpp
+++ b/src/mame/drivers/subsino.cpp
@@ -387,14 +387,14 @@ TILE_GET_INFO_MEMBER(subsino_state::get_tile_info)
uint16_t color = (code >> 8) & 0x0f;
code = ((code & 0xf000) >> 4) + ((code & 0xff) >> 0);
code += m_tiles_offset;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
TILE_GET_INFO_MEMBER(subsino_state::get_stbsub_tile_info)
{
uint16_t code = m_videoram[ tile_index ] + (m_colorram[ tile_index ] << 8);
code&= 0x3fff;
- SET_TILE_INFO_MEMBER(0, code, 0, 0);
+ tileinfo.set(0, code, 0, 0);
}
@@ -419,7 +419,7 @@ TILE_GET_INFO_MEMBER(subsino_state::get_reel_tile_info)
int code = m_reel_ram[Reel][tile_index];
int colour = (m_out_c&0x7) + 8;
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
code,
colour,
0);
@@ -431,7 +431,7 @@ TILE_GET_INFO_MEMBER(subsino_state::get_stbsub_reel_tile_info)
int code = m_reel_ram[Reel][tile_index];
int attr = m_reel_attr[Reel][tile_index];
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
code | (attr << 8),
0,
0);