diff --git a/Moonlight/Core/Helpers/HostSystemHelper.cs b/Moonlight/Core/Helpers/HostSystemHelper.cs index b0df6e97..0e33ffc9 100644 --- a/Moonlight/Core/Helpers/HostSystemHelper.cs +++ b/Moonlight/Core/Helpers/HostSystemHelper.cs @@ -58,7 +58,7 @@ public static class HostSystemHelper public static Task GetMemoryUsage() { var process = Process.GetCurrentProcess(); - var bytes = process.WorkingSet64; + var bytes = process.PrivateMemorySize64; return Task.FromResult(bytes); }