mirror of https://github.com/stella-emu/stella.git
Fixed PAL color-loss effect bug when the ROM always has an odd # of lines.
This commit is contained in:
parent
73fe5f3b40
commit
78cb21d798
|
@ -764,7 +764,7 @@ bool TIA::enableColorLoss(bool enabled)
|
|||
if(enabled)
|
||||
{
|
||||
myColorLossEnabled = true;
|
||||
myColorLossActive = false; // will be determined each frame
|
||||
myColorLossActive = myFrameManager.scanlinesLastFrame() & 0x1;
|
||||
}
|
||||
else
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue