summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Couriersud <couriersud@users.noreply.github.com>2008-10-20 23:53:02 +0000
committer Couriersud <couriersud@users.noreply.github.com>2008-10-20 23:53:02 +0000
commita0d4e2085aca4ad51b4611082e779a4db3740ded (patch)
treef7b3e444f6df55a85d94238ac592e9fe49ebb495
parent8eecd6745cfccee3f5c40dc73c9050d7487ca9f8 (diff)
Revoke accidental commit
* added comment about possible fix gseeker "black continue screen"
-rw-r--r--src/mame/video/taito_f3.c5
1 files changed, 4 insertions, 1 deletions
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)