mirror of
https://github.com/Ryujinx/ChocolArm64.git
synced 2025-01-03 16:55:43 +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];
|
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