mirror of
https://github.com/Ryujinx/ChocolArm64.git
synced 2024-12-22 14:05:39 +00:00
Fix regression caused by wrong time delta calculation on cache deletion methods
This commit is contained in:
parent
0183f5e1a1
commit
d817eff2cb
|
@ -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…
Reference in a new issue