Fixed PAL color-loss effect bug when the ROM always has an odd # of lines.

This commit is contained in:
Stephen Anthony 2017-05-12 18:12:32 -02:30
parent 73fe5f3b40
commit 78cb21d798
1 changed files with 1 additions and 1 deletions

View File

@ -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
{