Commit e047737d authored by Laurent Aimar's avatar Laurent Aimar

Corrected semi transparent ZVBI test (but I let it disabled).

parent 74b91f6f
...@@ -510,7 +510,7 @@ static int OpaquePage( picture_t *p_src, const vbi_page p_page, ...@@ -510,7 +510,7 @@ static int OpaquePage( picture_t *p_src, const vbi_page p_page,
break; break;
/* Transparency for boxed text */ /* Transparency for boxed text */
case VBI_SEMI_TRANSPARENT: case VBI_SEMI_TRANSPARENT:
if( (*p_pixel & 0xffffff00) == 0xff ) /* FIXME cannot be true ? */ if( (*p_pixel) == 0xff000000 && 0 ) /* Disabled until someone implement borders */
*p_pixel = 0; *p_pixel = 0;
break; break;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment