hide gal graphics on title screen until fully drawn (fantasia etc.) I don't know if this is more or less accurate to the PCBs tho, can somebody confirm? (nw)

This commit is contained in:
mamehaze 2015-02-14 13:21:37 +00:00
parent dbdfe70cdc
commit 187102728f

View File

@ -299,8 +299,8 @@ UINT32 expro02_state::screen_update_backgrounds(screen_device &screen, bitmap_in
for (x=0;x<256;x++) for (x=0;x<256;x++)
{ {
UINT16 dat = (m_expro02_fg_ind8_pixram[count]); UINT16 dat = (m_expro02_fg_ind8_pixram[count]);
//dat &=0x3ff; dat &=0x7ff;
if (dat) if (!(m_generic_paletteram_16[(dat&0x7ff)] & 0x0001))
dest[x] = dat; dest[x] = dat;
count++; count++;