summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/wecleman.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/wecleman.c')
-rw-r--r--src/mame/video/wecleman.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mame/video/wecleman.c b/src/mame/video/wecleman.c
index 1a57145c2b6..85f65896d73 100644
--- a/src/mame/video/wecleman.c
+++ b/src/mame/video/wecleman.c
@@ -1138,19 +1138,19 @@ VIDEO_UPDATE( hotchase )
bitmap_fill(bitmap, cliprect, black_pen);
/* Draw the background */
- if (video_on)
+ if (video_on)
k051316_zoom_draw(k051316_1, bitmap, cliprect, 0, 0);
/* Draw the road */
- if (video_on)
+ if (video_on)
hotchase_draw_road(screen->machine, bitmap, cliprect);
/* Draw the sprites */
- if (video_on)
+ if (video_on)
sprite_draw(bitmap,cliprect);
/* Draw the foreground (text) */
- if (video_on)
+ if (video_on)
k051316_zoom_draw(k051316_2, bitmap, cliprect, 0, 0);
return 0;
}