From b5313c7841498e532b693eee0092a583e729f5a7 Mon Sep 17 00:00:00 2001 From: Angelo Salese Date: Wed, 6 Feb 2013 19:46:55 +0000 Subject: [PATCH] Fix compile --- src/mame/video/stvvdp2.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/mame/video/stvvdp2.c b/src/mame/video/stvvdp2.c index 8741894310f..368b835dd31 100644 --- a/src/mame/video/stvvdp2.c +++ b/src/mame/video/stvvdp2.c @@ -6811,7 +6811,7 @@ static void draw_sprites(running_machine &machine, bitmap_rgb32 &bitmap, const r /*shadow - in reality, we should check from what layer pixel beneath comes...*/ if ( STV_VDP2_SDCTL & 0x3f ) { - UINT32 p;// = bitmap_line[x]; + UINT32 p = bitmap_line[x]; if(double_x) { p = bitmap_line[x*2]; @@ -6884,7 +6884,7 @@ static void draw_sprites(running_machine &machine, bitmap_rgb32 &bitmap, const r { if ( pix & ~sprite_shadow ) { - UINT32 p; //= bitmap_line[x]; + UINT32 p = bitmap_line[x]; if(double_x) { p = bitmap_line[x*2];