From ef57e047bbf6ce6f8b70a34815db45d881c63d23 Mon Sep 17 00:00:00 2001 From: Thog Date: Fri, 22 Nov 2019 20:14:54 +0100 Subject: [PATCH] Make sure to save the configuration after loading default values --- Ryujinx/Program.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Ryujinx/Program.cs b/Ryujinx/Program.cs index cbf3c1b92f..e292a4a7f3 100644 --- a/Ryujinx/Program.cs +++ b/Ryujinx/Program.cs @@ -38,8 +38,9 @@ namespace Ryujinx } else { - // No configuration, we load the default values. + // No configuration, we load the default values and save it on disk ConfigurationState.Instance.LoadDefault(); + ConfigurationState.Instance.ToFileFormat().SaveConfig(configurationPath); }