From 0d866aa1737363220db38ca9b6be7d917ce5dffc Mon Sep 17 00:00:00 2001 From: Gliniak Date: Sat, 8 Feb 2020 20:44:54 +0100 Subject: [PATCH] [CPU] Increased maximum function count --- src/xenia/cpu/backend/x64/x64_code_cache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/cpu/backend/x64/x64_code_cache.h b/src/xenia/cpu/backend/x64/x64_code_cache.h index dbe59dcde..5593b0911 100644 --- a/src/xenia/cpu/backend/x64/x64_code_cache.h +++ b/src/xenia/cpu/backend/x64/x64_code_cache.h @@ -82,7 +82,7 @@ class X64CodeCache : public CodeCache { // This is picked to be high enough to cover whatever we can reasonably // expect. If we hit issues with this it probably means some corner case // in analysis triggering. - static const size_t kMaximumFunctionCount = 50000; + static const size_t kMaximumFunctionCount = 100000; struct UnwindReservation { size_t data_size = 0;