summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/raiden.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/raiden.c')
-rw-r--r--src/mame/video/raiden.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/raiden.c b/src/mame/video/raiden.c
index bf7a9360ffe..2a5b250050b 100644
--- a/src/mame/video/raiden.c
+++ b/src/mame/video/raiden.c
@@ -162,11 +162,11 @@ UINT32 raiden_state::screen_update_raiden(screen_device &screen, bitmap_ind16 &b
m_bg_layer->draw(bitmap, cliprect, 0,0);
/* Draw sprites underneath foreground */
- draw_sprites(screen.machine(),bitmap,cliprect,0x40);
+ draw_sprites(machine(),bitmap,cliprect,0x40);
m_fg_layer->draw(bitmap, cliprect, 0,0);
/* Rest of sprites */
- draw_sprites(screen.machine(),bitmap,cliprect,0x80);
+ draw_sprites(machine(),bitmap,cliprect,0x80);
/* Text layer */
m_tx_layer->draw(bitmap, cliprect, 0,0);