summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/mcr68.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/mcr68.c')
-rw-r--r--src/mame/video/mcr68.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/mcr68.c b/src/mame/video/mcr68.c
index 26ad332f8c2..12d105ace36 100644
--- a/src/mame/video/mcr68.c
+++ b/src/mame/video/mcr68.c
@@ -320,13 +320,13 @@ UINT32 mcr68_state::screen_update_mcr68(screen_device &screen, bitmap_ind16 &bit
m_bg_tilemap->draw(bitmap, cliprect, TILEMAP_DRAW_OPAQUE | TILEMAP_DRAW_ALL_CATEGORIES, 0);
/* draw the low-priority sprites */
- mcr68_update_sprites(screen.machine(), bitmap, cliprect, 0);
+ mcr68_update_sprites(machine(), bitmap, cliprect, 0);
/* redraw tiles with priority over sprites */
m_bg_tilemap->draw(bitmap, cliprect, 1, 0);
/* draw the high-priority sprites */
- mcr68_update_sprites(screen.machine(), bitmap, cliprect, 1);
+ mcr68_update_sprites(machine(), bitmap, cliprect, 1);
return 0;
}
@@ -337,12 +337,12 @@ UINT32 mcr68_state::screen_update_zwackery(screen_device &screen, bitmap_ind16 &
m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
/* draw the low-priority sprites */
- zwackery_update_sprites(screen.machine(), bitmap, cliprect, 0);
+ zwackery_update_sprites(machine(), bitmap, cliprect, 0);
/* redraw tiles with priority over sprites */
m_fg_tilemap->draw(bitmap, cliprect, 1, 0);
/* draw the high-priority sprites */
- zwackery_update_sprites(screen.machine(), bitmap, cliprect, 1);
+ zwackery_update_sprites(machine(), bitmap, cliprect, 1);
return 0;
}