Fix custom settings invalidating global settings

This commit is contained in:
blackfa765
2026-09-05 14:13:06 -05:00
committed by KeatonTheBot
parent 2cce274f58
commit 8655d58911
+6 -2
View File
@@ -624,6 +624,12 @@ namespace Ryujinx.Ava
_gpuCancellationTokenSource.Dispose();
DisposeGpu();
if (CustomSettingsHelper.HasCustomSettings(CustomSettingsHelper.PathToGameSettingsJson(ApplicationId)))
{
Program.ReloadConfig();
}
AppExit?.Invoke(this, EventArgs.Empty);
}
@@ -1072,8 +1078,6 @@ namespace Ryujinx.Ava
}
}
MainWindowViewModel.SaveConfig();
return deviceDriver;
}