Fix regression caused by wrong time delta calculation on cache deletion methods
This commit is contained in:
parent
0183f5e1a1
commit
d817eff2cb
1 changed files with 1 additions and 1 deletions
|
@ -138,7 +138,7 @@ namespace ChocolArm64
|
||||||
|
|
||||||
CacheBucket Bucket = Cache[Node.Value];
|
CacheBucket Bucket = Cache[Node.Value];
|
||||||
|
|
||||||
long TimeDelta = Bucket.Timestamp - Timestamp;
|
long TimeDelta = Timestamp - Bucket.Timestamp;
|
||||||
|
|
||||||
if (TimeDelta <= MinTimeDelta)
|
if (TimeDelta <= MinTimeDelta)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in a new issue