mirror of
https://git.743378673.xyz/MeloNX/MeloNX.git
synced 2025-07-27 17:07:10 +02:00
Fix regression caused by wrong time delta calculation on cache deletion methods
This commit is contained in:
parent
63237973fe
commit
8be135d2d0
2 changed files with 2 additions and 2 deletions
|
@ -138,7 +138,7 @@ namespace ChocolArm64
|
|||
|
||||
CacheBucket Bucket = Cache[Node.Value];
|
||||
|
||||
long TimeDelta = Bucket.Timestamp - Timestamp;
|
||||
long TimeDelta = Timestamp - Bucket.Timestamp;
|
||||
|
||||
if (TimeDelta <= MinTimeDelta)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue