summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author mamehaze <mamehaze@users.noreply.github.com>2015-02-14 13:21:37 +0000
committer mamehaze <mamehaze@users.noreply.github.com>2015-02-14 13:21:37 +0000
commit187102728f61c74b98467e1647d5214c788cf050 (patch)
treec9b38bb393be5f1faee7c4273d8e7c28f40ccf6d
parentdbdfe70cdc488d043b048557930d9a39d7a88fbe (diff)
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)
-rw-r--r--src/mame/drivers/expro02.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/drivers/expro02.c b/src/mame/drivers/expro02.c
index d30dace5cce..76f910adf17 100644
--- a/src/mame/drivers/expro02.c
+++ b/src/mame/drivers/expro02.c
@@ -299,8 +299,8 @@ UINT32 expro02_state::screen_update_backgrounds(screen_device &screen, bitmap_in
for (x=0;x<256;x++)
{
UINT16 dat = (m_expro02_fg_ind8_pixram[count]);
- //dat &=0x3ff;
- if (dat)
+ dat &=0x7ff;
+ if (!(m_generic_paletteram_16[(dat&0x7ff)] & 0x0001))
dest[x] = dat;
count++;