summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/speedbal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/speedbal.cpp')
-rw-r--r--src/mame/video/speedbal.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/speedbal.cpp b/src/mame/video/speedbal.cpp
index 2642fed1af8..3bbd6bfecc0 100644
--- a/src/mame/video/speedbal.cpp
+++ b/src/mame/video/speedbal.cpp
@@ -17,7 +17,7 @@ TILE_GET_INFO_MEMBER(speedbal_state::get_tile_info_bg)
int code = m_background_videoram[tile_index*2] + ((m_background_videoram[tile_index*2+1] & 0x30) << 4);
int color = m_background_videoram[tile_index*2+1] & 0x0f;
- SET_TILE_INFO_MEMBER(1, code, color, 0);
+ tileinfo.set(1, code, color, 0);
tileinfo.group = (color == 8);
}
@@ -26,7 +26,7 @@ TILE_GET_INFO_MEMBER(speedbal_state::get_tile_info_fg)
int code = m_foreground_videoram[tile_index*2] + ((m_foreground_videoram[tile_index*2+1] & 0x30) << 4);
int color = m_foreground_videoram[tile_index*2+1] & 0x0f;
- SET_TILE_INFO_MEMBER(0, code, color, 0);
+ tileinfo.set(0, code, color, 0);
tileinfo.group = (color == 9);
}