From b2354768c48fd57ada06f4913f309339e5d3f2ac Mon Sep 17 00:00:00 2001 From: VocalFan <45863583+FluffyOMC@users.noreply.github.com> Date: Mon, 3 Feb 2025 03:17:22 -0500 Subject: [PATCH] Change Region size from 256MB to 128MB --- src/ARMeilleure/Translation/Cache/JitCache.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ARMeilleure/Translation/Cache/JitCache.cs b/src/ARMeilleure/Translation/Cache/JitCache.cs index 0ede558b6..dee325ef6 100644 --- a/src/ARMeilleure/Translation/Cache/JitCache.cs +++ b/src/ARMeilleure/Translation/Cache/JitCache.cs @@ -20,7 +20,7 @@ namespace ARMeilleure.Translation.Cache private static readonly int _pageMask = _pageSize - 1; private const int CodeAlignment = 4; // Bytes. - private const int CacheSize = 256 * 1024 * 1024; + private const int CacheSize = 128 * 1024 * 1024; private static JitCacheInvalidation _jitCacheInvalidator;