From 0d9fa91a703c68d00a118a3027452fa75803bad5 Mon Sep 17 00:00:00 2001 From: Isaac Marovitz Date: Mon, 1 Jan 2024 16:47:08 -0800 Subject: [PATCH] iOS - Disable StdErrAdapter Enabling fills the logs with uneeded spam --- src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs b/src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs index a17c28717..cadebb436 100644 --- a/src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs +++ b/src/Ryujinx.Common/SystemInterop/StdErrAdapter.cs @@ -19,7 +19,7 @@ namespace Ryujinx.Common.SystemInterop public StdErrAdapter() { - if (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS() || OperatingSystem.IsIOS()) + if (OperatingSystem.IsLinux() || OperatingSystem.IsMacOS()) { RegisterPosix(); }