summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/galaxia.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/galaxia.cpp')
-rw-r--r--src/mame/video/galaxia.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/galaxia.cpp b/src/mame/video/galaxia.cpp
index e156580afb2..5a6377f8062 100644
--- a/src/mame/video/galaxia.cpp
+++ b/src/mame/video/galaxia.cpp
@@ -66,7 +66,7 @@ TILE_GET_INFO_MEMBER(galaxia_state::get_galaxia_bg_tile_info)
uint8_t code = m_video_ram[tile_index] & 0x7f; // d7 unused
uint8_t color = m_color_ram[tile_index] & 3; // highest bits unused
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
TILE_GET_INFO_MEMBER(galaxia_state::get_astrowar_bg_tile_info)
@@ -74,7 +74,7 @@ TILE_GET_INFO_MEMBER(galaxia_state::get_astrowar_bg_tile_info)
uint8_t code = m_video_ram[tile_index];
uint8_t color = m_color_ram[tile_index] & 7; // highest bits unused
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
}
void galaxia_state::init_common()