summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/cyberbal.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/cyberbal.cpp')
-rw-r--r--src/mame/video/cyberbal.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/cyberbal.cpp b/src/mame/video/cyberbal.cpp
index 04150cfc178..1314c32f032 100644
--- a/src/mame/video/cyberbal.cpp
+++ b/src/mame/video/cyberbal.cpp
@@ -26,7 +26,7 @@ TILE_GET_INFO_MEMBER(cyberbal_base_state::get_alpha_tile_info)
uint16_t data = m_alpha->basemem_read(tile_index);
int code = data & 0xfff;
int color = (data >> 12) & 0x07;
- SET_TILE_INFO_MEMBER(2, code, color, (data >> 15) & 1);
+ tileinfo.set(2, code, color, (data >> 15) & 1);
}
@@ -35,7 +35,7 @@ TILE_GET_INFO_MEMBER(cyberbal_state::get_alpha2_tile_info)
uint16_t data = m_alpha2->basemem_read(tile_index);
int code = data & 0xfff;
int color = (data >> 12) & 0x07;
- SET_TILE_INFO_MEMBER(2, code, color, (data >> 15) & 1);
+ tileinfo.set(2, code, color, (data >> 15) & 1);
}
@@ -44,7 +44,7 @@ TILE_GET_INFO_MEMBER(cyberbal_base_state::get_playfield_tile_info)
uint16_t data = m_playfield->basemem_read(tile_index);
int code = data & 0x1fff;
int color = (data >> 11) & 0x0f;
- SET_TILE_INFO_MEMBER(0, code, color, (data >> 15) & 1);
+ tileinfo.set(0, code, color, (data >> 15) & 1);
}
@@ -53,7 +53,7 @@ TILE_GET_INFO_MEMBER(cyberbal_state::get_playfield2_tile_info)
uint16_t data = m_playfield2->basemem_read(tile_index);
int code = data & 0x1fff;
int color = (data >> 11) & 0x0f;
- SET_TILE_INFO_MEMBER(0, code, color, (data >> 15) & 1);
+ tileinfo.set(0, code, color, (data >> 15) & 1);
}