mirror of
https://github.com/libretro/snes9x.git
synced 2025-03-03 06:26:51 +00:00
Check POR freeze-high bit for transparency check.
This commit is contained in:
parent
72c25f8578
commit
011bec6342
@ -1049,7 +1049,7 @@ static void fx_plot_8bit (void)
|
||||
c = (uint8) GSU.vColorReg;
|
||||
if (!(GSU.vPlotOptionReg & 0x10))
|
||||
{
|
||||
if (!(GSU.vPlotOptionReg & 0x01) && !(c & 0xf))
|
||||
if (!(GSU.vPlotOptionReg & 0x01) && (!c || ((GSU.vPlotOptionReg & 0x08) && !(c & 0xf))))
|
||||
return;
|
||||
}
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user