summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/goindol.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/goindol.cpp')
-rw-r--r--src/mame/video/goindol.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/goindol.cpp b/src/mame/video/goindol.cpp
index 800fa01eaba..c0084af95b8 100644
--- a/src/mame/video/goindol.cpp
+++ b/src/mame/video/goindol.cpp
@@ -21,7 +21,7 @@ TILE_GET_INFO_MEMBER(goindol_state::get_fg_tile_info)
{
int code = m_fg_videoram[2 * tile_index + 1];
int attr = m_fg_videoram[2 * tile_index];
- SET_TILE_INFO_MEMBER(0,
+ tileinfo.set(0,
code | ((attr & 0x7) << 8) | (m_char_bank << 11),
(attr & 0xf8) >> 3,
0);
@@ -31,7 +31,7 @@ TILE_GET_INFO_MEMBER(goindol_state::get_bg_tile_info)
{
int code = m_bg_videoram[2 * tile_index + 1];
int attr = m_bg_videoram[2 * tile_index];
- SET_TILE_INFO_MEMBER(1,
+ tileinfo.set(1,
code | ((attr & 0x7) << 8) | (m_char_bank << 11),
(attr & 0xf8) >> 3,
0);