From 46001f3cbc17373fa6f0d836d44876468c982b27 Mon Sep 17 00:00:00 2001 From: gdkchan Date: Sun, 23 Sep 2018 15:51:25 -0300 Subject: [PATCH] Tweak cpu cache deletion policy values --- ChocolArm64/ATranslatorCache.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ChocolArm64/ATranslatorCache.cs b/ChocolArm64/ATranslatorCache.cs index e34cc397b6..7980aeb223 100644 --- a/ChocolArm64/ATranslatorCache.cs +++ b/ChocolArm64/ATranslatorCache.cs @@ -8,9 +8,9 @@ namespace ChocolArm64 { class ATranslatorCache { - private const int MaxTotalSize = 2 * 1024 * 256; - private const int MaxTimeDelta = 30000; - private const int MinCallCountForUpdate = 1000; + private const int MaxTotalSize = 4 * 1024 * 256; + private const int MaxTimeDelta = 2 * 60000; + private const int MinCallCountForUpdate = 250; private class CacheBucket {