mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-17 18:16:38 +00:00
Disable hypervisor by default on macOS
This commit is contained in:
parent
7124d679fd
commit
7cc8b205fc
1 changed files with 2 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue