From 7cc8b205fcb6a06390cb8b91449a0a27a1ebb32c Mon Sep 17 00:00:00 2001 From: Gabriel A Date: Sun, 31 Mar 2024 08:41:09 -0300 Subject: [PATCH] Disable hypervisor by default on macOS --- src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs b/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs index b7f36087cb..6f0825444f 100644 --- a/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs +++ b/src/Ryujinx.UI.Common/Configuration/ConfigurationState.cs @@ -803,7 +803,7 @@ namespace Ryujinx.UI.Common.Configuration System.MemoryManagerMode.Value = MemoryManagerMode.HostMappedUnsafe; System.ExpandRam.Value = false; System.IgnoreMissingServices.Value = false; - System.UseHypervisor.Value = true; + System.UseHypervisor.Value = false; Multiplayer.LanInterfaceId.Value = "0"; Multiplayer.Mode.Value = MultiplayerMode.Disabled; UI.GuiColumns.FavColumn.Value = true; @@ -1365,7 +1365,7 @@ namespace Ryujinx.UI.Common.Configuration { Ryujinx.Common.Logging.Logger.Warning?.Print(LogClass.Application, $"Outdated configuration version {configurationFileFormat.Version}, migrating to version 43."); - configurationFileFormat.UseHypervisor = true; + configurationFileFormat.UseHypervisor = false; } if (configurationFileFormat.Version < 44)