mirror of
https://github.com/holub/mame
synced 2025-04-25 17:56:43 +03:00
fixed compile on old Apple GCC (thanks Micko). nw.
This commit is contained in:
parent
fc2e5f923a
commit
fa83233e8e
@ -137,8 +137,8 @@ void cyberbal_state::scanline_update(screen_device &screen, int scanline)
|
||||
screen_device_iterator iter(*this);
|
||||
for (i = 0, update_screen = iter.first(); update_screen != NULL; i++, update_screen = iter.next())
|
||||
{
|
||||
tilemap_t *curplayfield = i ? m_playfield2_tilemap : m_playfield_tilemap;
|
||||
tilemap_device *curalpha = i ? m_alpha2_tilemap : m_alpha_tilemap;
|
||||
tilemap_t *curplayfield = i ? (tilemap_t*)m_playfield2_tilemap : (tilemap_t*)m_playfield_tilemap;
|
||||
tilemap_device *curalpha = i ? (tilemap_device*)m_alpha2_tilemap : (tilemap_device*)m_alpha_tilemap;
|
||||
|
||||
/* keep in range */
|
||||
int offset = ((scanline - 8) / 8) * 64 + 47;
|
||||
|
Loading…
Reference in New Issue
Block a user