diff options
Diffstat (limited to 'src/mame/video/gaiden.c')
-rw-r--r-- | src/mame/video/gaiden.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/gaiden.c b/src/mame/video/gaiden.c index 2daefdd4f9a..1b05af24ccc 100644 --- a/src/mame/video/gaiden.c +++ b/src/mame/video/gaiden.c @@ -180,7 +180,7 @@ WRITE16_HANDLER( gaiden_videoram3_w ) WRITE16_HANDLER( gaiden_flip_w ) { if (ACCESSING_BITS_0_7) - flip_screen_set(data & 1); + flip_screen_set(space->machine, data & 1); } @@ -330,7 +330,7 @@ static void gaiden_draw_sprites(running_machine *machine, bitmap_t *bitmap, cons if (ypos >= 256) ypos -= 512; - if (flip_screen_get()) + if (flip_screen_get(machine)) { flipx = !flipx; flipy = !flipy; @@ -426,7 +426,7 @@ static void raiga_draw_sprites(running_machine *machine, bitmap_t *bitmap_bg, bi if (ypos >= 256) ypos -= 512; - if (flip_screen_get()) + if (flip_screen_get(machine)) { flipx = !flipx; flipy = !flipy; |