Fixed final warning in jitter code.

This commit is contained in:
Stephen Anthony 2017-10-17 09:57:19 -02:30
parent 424808b948
commit ad2d53758f
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ void JitterEmulation::reset()
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void JitterEmulation::frameComplete(uInt32 scanlineCount)
{
if (scanlineCount != myStableFrameFinalLines) {
if (Int32(scanlineCount) != myStableFrameFinalLines) {
if (myDestabilizationCounter++ > Metrics::framesUntilDestabilization) myStableFrameFinalLines = -1;
if (scanlineCount == myLastFrameScanlines) {