aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormerry <git@mary.rs>2023-01-17 04:32:08 +0000
committerGitHub <noreply@github.com>2023-01-17 05:32:08 +0100
commitcff9046fc7765768ed38e4442bcb5d18446874f9 (patch)
treee81582ae9db680dd2e04eefe9d2c8654d2bd74be
parent86fd0643c26433362a25acceb4fa1fcee07dd0b2 (diff)
ConfigurationState: Default to Vulkan on macOS (#4299)1.1.569
-rw-r--r--Ryujinx.Ui.Common/Configuration/ConfigurationState.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs b/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs
index ae183fea..e64c69ad 100644
--- a/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs
+++ b/Ryujinx.Ui.Common/Configuration/ConfigurationState.cs
@@ -617,7 +617,7 @@ namespace Ryujinx.Ui.Common.Configuration
Graphics.ResScaleCustom.Value = 1.0f;
Graphics.MaxAnisotropy.Value = -1.0f;
Graphics.AspectRatio.Value = AspectRatio.Fixed16x9;
- Graphics.GraphicsBackend.Value = GraphicsBackend.OpenGl;
+ Graphics.GraphicsBackend.Value = OperatingSystem.IsMacOS() ? GraphicsBackend.Vulkan : GraphicsBackend.OpenGl;
Graphics.PreferredGpu.Value = "";
Graphics.ShadersDumpPath.Value = "";
Logger.EnableDebug.Value = false;