summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/snk6502.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/snk6502.cpp')
-rw-r--r--src/mame/video/snk6502.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/snk6502.cpp b/src/mame/video/snk6502.cpp
index 345b9b80972..0ce84fc7098 100644
--- a/src/mame/video/snk6502.cpp
+++ b/src/mame/video/snk6502.cpp
@@ -152,7 +152,7 @@ TILE_GET_INFO_MEMBER(snk6502_state::get_bg_tile_info)
int code = m_videoram[tile_index] + 256 * m_charbank;
int color = (m_colorram[tile_index] & 0x38) >> 3;
- SET_TILE_INFO_MEMBER(1, code, color, 0);
+ tileinfo.set(1, code, color, 0);
}
TILE_GET_INFO_MEMBER(snk6502_state::get_fg_tile_info)
@@ -160,7 +160,7 @@ TILE_GET_INFO_MEMBER(snk6502_state::get_fg_tile_info)
int code = m_videoram2[tile_index];
int color = m_colorram[tile_index] & 0x07;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
VIDEO_START_MEMBER(snk6502_state,snk6502)
@@ -276,7 +276,7 @@ TILE_GET_INFO_MEMBER(snk6502_state::satansat_get_bg_tile_info)
int code = m_videoram[tile_index];
int color = (m_colorram[tile_index] & 0x0c) >> 2;
- SET_TILE_INFO_MEMBER(1, code, color, 0);
+ tileinfo.set(1, code, color, 0);
}
TILE_GET_INFO_MEMBER(snk6502_state::satansat_get_fg_tile_info)
@@ -284,7 +284,7 @@ TILE_GET_INFO_MEMBER(snk6502_state::satansat_get_fg_tile_info)
int code = m_videoram2[tile_index];
int color = m_colorram[tile_index] & 0x03;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
VIDEO_START_MEMBER(snk6502_state,satansat)