aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx/Program.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx/Program.cs')
-rw-r--r--Ryujinx/Program.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/Ryujinx/Program.cs b/Ryujinx/Program.cs
index 846275cd..1e0fdd3a 100644
--- a/Ryujinx/Program.cs
+++ b/Ryujinx/Program.cs
@@ -140,7 +140,8 @@ namespace Ryujinx
PrintSystemInfo();
// Enable OGL multithreading on the driver, when available.
- DriverUtilities.ToggleOGLThreading(true);
+ BackendThreading threadingMode = ConfigurationState.Instance.Graphics.BackendThreading;
+ DriverUtilities.ToggleOGLThreading(threadingMode == BackendThreading.Off);
// Initialize Gtk.
Application.Init();