Fix regression caused by wrong time delta calculation on cache deletion methods

This commit is contained in:
gdkchan 2018-10-30 11:42:27 -03:00
parent 0183f5e1a1
commit d817eff2cb
1 changed files with 1 additions and 1 deletions

View File

@ -138,7 +138,7 @@ namespace ChocolArm64
CacheBucket Bucket = Cache[Node.Value];
long TimeDelta = Bucket.Timestamp - Timestamp;
long TimeDelta = Timestamp - Bucket.Timestamp;
if (TimeDelta <= MinTimeDelta)
{