Fix regression caused by wrong time delta calculation on cache deletion methods
This commit is contained in:
@@ -138,7 +138,7 @@ namespace ChocolArm64
|
||||
|
||||
CacheBucket Bucket = Cache[Node.Value];
|
||||
|
||||
long TimeDelta = Bucket.Timestamp - Timestamp;
|
||||
long TimeDelta = Timestamp - Bucket.Timestamp;
|
||||
|
||||
if (TimeDelta <= MinTimeDelta)
|
||||
{
|
||||
|
Reference in New Issue
Block a user