summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/superqix.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/superqix.c')
-rw-r--r--src/mame/video/superqix.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/superqix.c b/src/mame/video/superqix.c
index 9b83a89b10f..b3b80cee75b 100644
--- a/src/mame/video/superqix.c
+++ b/src/mame/video/superqix.c
@@ -219,7 +219,7 @@ static void superqix_draw_sprites(running_machine &machine, bitmap_ind16 &bitmap
UINT32 superqix_state::screen_update_pbillian(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
m_bg_tilemap->draw(bitmap, cliprect, 0, 0);
- pbillian_draw_sprites(screen.machine(), bitmap,cliprect);
+ pbillian_draw_sprites(machine(), bitmap,cliprect);
return 0;
}
@@ -228,7 +228,7 @@ UINT32 superqix_state::screen_update_superqix(screen_device &screen, bitmap_ind1
{
m_bg_tilemap->draw(bitmap, cliprect, TILEMAP_DRAW_LAYER1, 0);
copybitmap_trans(bitmap,*m_fg_bitmap[m_show_bitmap],flip_screen(),flip_screen(),0,0,cliprect,0);
- superqix_draw_sprites(screen.machine(), bitmap,cliprect);
+ superqix_draw_sprites(machine(), bitmap,cliprect);
m_bg_tilemap->draw(bitmap, cliprect, TILEMAP_DRAW_LAYER0, 0);
return 0;
}