summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/fastfred.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/fastfred.c')
-rw-r--r--src/mame/video/fastfred.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/fastfred.c b/src/mame/video/fastfred.c
index 8e81baa31d3..271b2f47d6f 100644
--- a/src/mame/video/fastfred.c
+++ b/src/mame/video/fastfred.c
@@ -352,7 +352,7 @@ VIDEO_START_MEMBER(fastfred_state,imago)
m_fg_tilemap->set_transparent_pen(0);
/* the game has a galaxian starfield */
- galaxold_init_stars(machine(), 256);
+ galaxold_init_stars(256);
m_stars_on = 1;
/* web colors */
@@ -363,7 +363,7 @@ VIDEO_START_MEMBER(fastfred_state,imago)
UINT32 fastfred_state::screen_update_imago(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect)
{
m_web_tilemap->draw(bitmap, cliprect, 0,0);
- galaxold_draw_stars(machine(), bitmap, cliprect);
+ galaxold_draw_stars(bitmap, cliprect);
m_bg_tilemap->draw(bitmap, cliprect, 0,0);
draw_sprites(bitmap, cliprect);
m_fg_tilemap->draw(bitmap, cliprect, 0,0);