* Taseditor: small fix for previous commit

This commit is contained in:
ansstuff 2012-11-05 20:00:06 +00:00
parent c9bf79a8eb
commit 2882ff0942
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ void GREENZONE::CollectCurrentState()
{
if (lagFlag && (old_lagFlag != LAGGED_YES))
laglog.SetLagInfo(currFrameCounter - 1, true);
else if (old_lagFlag != LAGGED_NO)
else if (!lagFlag && old_lagFlag != LAGGED_NO)
laglog.SetLagInfo(currFrameCounter - 1, false);
}
}