summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/neogeo.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/neogeo.c')
-rw-r--r--src/mame/video/neogeo.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/neogeo.c b/src/mame/video/neogeo.c
index 7f0346bb44d..331bbca6873 100644
--- a/src/mame/video/neogeo.c
+++ b/src/mame/video/neogeo.c
@@ -923,9 +923,9 @@ UINT32 neogeo_state::screen_update_neogeo(screen_device &screen, bitmap_rgb32 &b
/* fill with background color first */
bitmap.fill(m_pens[0x0fff], cliprect);
- draw_sprites(screen.machine(), bitmap, cliprect.min_y);
+ draw_sprites(machine(), bitmap, cliprect.min_y);
- draw_fixed_layer(screen.machine(), bitmap, cliprect.min_y);
+ draw_fixed_layer(machine(), bitmap, cliprect.min_y);
return 0;
}