summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/nova2001.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/nova2001.cpp')
-rw-r--r--src/mame/video/nova2001.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/mame/video/nova2001.cpp b/src/mame/video/nova2001.cpp
index 2362a724bc1..8ae5eabd206 100644
--- a/src/mame/video/nova2001.cpp
+++ b/src/mame/video/nova2001.cpp
@@ -77,7 +77,7 @@ TILE_GET_INFO_MEMBER(nova2001_state::nova2001_get_bg_tile_info)
int const code = m_bg_videoram[tile_index];
int const color = m_bg_videoram[tile_index + 0x400] & 0x0f;
- SET_TILE_INFO_MEMBER(2, code, color, 0);
+ tileinfo.set(2, code, color, 0);
}
TILE_GET_INFO_MEMBER(nova2001_state::nova2001_get_fg_tile_info)
@@ -86,7 +86,7 @@ TILE_GET_INFO_MEMBER(nova2001_state::nova2001_get_fg_tile_info)
int const code = m_fg_videoram[tile_index];
int const color = attr & 0x0f;
- SET_TILE_INFO_MEMBER(1, code, color, 0);
+ tileinfo.set(1, code, color, 0);
tileinfo.category = (attr & 0x10) >> 4;
}
@@ -97,7 +97,7 @@ TILE_GET_INFO_MEMBER(nova2001_state::ninjakun_get_bg_tile_info)
int const code = m_bg_videoram[tile_index] + ((attr & 0xc0) << 2);
int const color = attr & 0x0f;
- SET_TILE_INFO_MEMBER(2, code, color, 0);
+ tileinfo.set(2, code, color, 0);
}
TILE_GET_INFO_MEMBER(nova2001_state::ninjakun_get_fg_tile_info)
@@ -106,7 +106,7 @@ TILE_GET_INFO_MEMBER(nova2001_state::ninjakun_get_fg_tile_info)
int const code = m_fg_videoram[tile_index] + ((attr & 0x20) << 3);
int const color = attr & 0x0f;
- SET_TILE_INFO_MEMBER(1, code, color, 0);
+ tileinfo.set(1, code, color, 0);
tileinfo.category = (attr & 0x10) >> 4;
}
@@ -117,7 +117,7 @@ TILE_GET_INFO_MEMBER(nova2001_state::pkunwar_get_bg_tile_info)
int const code = m_bg_videoram[tile_index] + ((attr & 0x07) << 8);
int const color = (attr & 0xf0) >> 4;
- SET_TILE_INFO_MEMBER(1, code, color, 0);
+ tileinfo.set(1, code, color, 0);
tileinfo.category = (attr & 0x08) >> 3;
}
@@ -128,7 +128,7 @@ TILE_GET_INFO_MEMBER(nova2001_state::raiders5_get_bg_tile_info)
int const code = m_bg_videoram[tile_index] + ((attr & 0x01) << 8);
int const color = (attr & 0xf0) >> 4;
- SET_TILE_INFO_MEMBER(2, code, color, 0);
+ tileinfo.set(2, code, color, 0);
}
TILE_GET_INFO_MEMBER(nova2001_state::raiders5_get_fg_tile_info)
@@ -136,7 +136,7 @@ TILE_GET_INFO_MEMBER(nova2001_state::raiders5_get_fg_tile_info)
int const code = m_fg_videoram[tile_index];
int const color = (m_fg_videoram[tile_index + 0x400] & 0xf0) >> 4;
- SET_TILE_INFO_MEMBER(1, code, color, 0);
+ tileinfo.set(1, code, color, 0);
}