Compare commits

...

3 Commits

Author SHA1 Message Date
gdkchan
b0eaab767d
Merge f2f3990e34 into 5dbba07e33 2024-09-28 04:59:34 -04:00
Gabriel A
f2f3990e34 Adjust spacing 2024-03-31 09:16:47 -03:00
Gabriel A
7cc8b205fc Disable hypervisor by default on macOS 2024-03-31 08:41:09 -03:00

View File

@ -820,7 +820,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;
@ -1382,7 +1382,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)