From 2b5ebd6071ae635614537f6ed84d3c3bcaa9a8ba Mon Sep 17 00:00:00 2001 From: Andy Adshead Date: Fri, 1 Feb 2019 00:07:09 +0000 Subject: [PATCH] Stop ram usage getting too high. Compensating for cleanup doing more now --- Ryujinx.Profiler/InternalProfile.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx.Profiler/InternalProfile.cs b/Ryujinx.Profiler/InternalProfile.cs index e87350f643..a0d363ea86 100644 --- a/Ryujinx.Profiler/InternalProfile.cs +++ b/Ryujinx.Profiler/InternalProfile.cs @@ -68,7 +68,7 @@ namespace Ryujinx.Profiler } // No need to run too often - Thread.Sleep(50); + Thread.Sleep(5); } }