From a0d4e2085aca4ad51b4611082e779a4db3740ded Mon Sep 17 00:00:00 2001 From: Couriersud Date: Mon, 20 Oct 2008 23:53:02 +0000 Subject: [PATCH] Revoke accidental commit * added comment about possible fix gseeker "black continue screen" --- src/mame/video/taito_f3.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/mame/video/taito_f3.c b/src/mame/video/taito_f3.c index ede59d51241..98748330857 100644 --- a/src/mame/video/taito_f3.c +++ b/src/mame/video/taito_f3.c @@ -2410,7 +2410,10 @@ static void scanline_draw(running_machine *machine, bitmap_t *bitmap, const rect { if(alpha_type==1) { - if (f3_alpha_level_2as==0 && f3_alpha_level_2ad==255) { alpha_mode[i]=3; alpha_mode_flag[i] |= 0x80;} + /* if (f3_alpha_level_2as==0 && f3_alpha_level_2ad==255) + * alpha_mode[i]=3; alpha_mode_flag[i] |= 0x80;} + * will display continue screen in gseeker (mt 00026) */ + if (f3_alpha_level_2as==0 && f3_alpha_level_2ad==255) alpha_mode[i]=0; else if(f3_alpha_level_2as==255 && f3_alpha_level_2ad==0 ) alpha_mode[i]=1; } else if(alpha_type==2)