summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/skykid.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/skykid.c')
-rw-r--r--src/mame/video/skykid.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/skykid.c b/src/mame/video/skykid.c
index e9bf27a50ea..73e1df56485 100644
--- a/src/mame/video/skykid.c
+++ b/src/mame/video/skykid.c
@@ -252,7 +252,7 @@ UINT32 skykid_state::screen_update_skykid(screen_device &screen, bitmap_ind16 &b
// draw low priority tiles
m_tx_tilemap->draw(bitmap, cliprect, pri, 0);
- draw_sprites(screen.machine(), bitmap, cliprect);
+ draw_sprites(machine(), bitmap, cliprect);
// draw the other tiles
for (cat = 0; cat < 0xf; cat++)
@@ -260,7 +260,7 @@ UINT32 skykid_state::screen_update_skykid(screen_device &screen, bitmap_ind16 &b
}
else
{
- draw_sprites(screen.machine(), bitmap, cliprect);
+ draw_sprites(machine(), bitmap, cliprect);
m_tx_tilemap->draw(bitmap, cliprect, TILEMAP_DRAW_ALL_CATEGORIES, 0);
}