fix missing starfield (regression @ 127u6, cause: default alpha $ff instead of 0)

This commit is contained in:
Michaël Banaan Ananas 2011-02-24 10:45:47 +00:00
parent d14e3c7d09
commit 328ccb9d71

View File

@ -384,7 +384,7 @@ static MC6845_END_UPDATE( end_update )
{
/* check if the star status */
if (state->star_enable &&
(*BITMAP_ADDR32(bitmap, y, x) == 0) &&
(*BITMAP_ADDR32(bitmap, y, x) == pens[0]) &&
((state->star_shift_reg & 0x80ff) == 0x00ff) &&
(((y & 0x01) ^ state->flipscreen) ^ (((x & 0x08) >> 3) ^ state->flipscreen)))
{