From 6f59a14ec603de90af93fd55cf29fb8125209229 Mon Sep 17 00:00:00 2001 From: Goodfeat Date: Fri, 23 May 2025 06:27:33 -0500 Subject: [PATCH] Small Fix: now it is enough to activate dirty hack in global settings for the option... See merge request [ryubing/ryujinx!20](https://git.ryujinx.app/ryubing/ryujinx/-/merge_requests/20) --- .../Systems/Configuration/ConfigurationState.Migration.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Ryujinx/Systems/Configuration/ConfigurationState.Migration.cs b/src/Ryujinx/Systems/Configuration/ConfigurationState.Migration.cs index f7bc22913..5843b5963 100644 --- a/src/Ryujinx/Systems/Configuration/ConfigurationState.Migration.cs +++ b/src/Ryujinx/Systems/Configuration/ConfigurationState.Migration.cs @@ -157,8 +157,8 @@ namespace Ryujinx.Ava.Systems.Configuration Multiplayer.LdnServer.Value = cff.LdnServer; { - Hacks.ShowDirtyHacks.Value = cff.ShowDirtyHacks; - + Hacks.ShowDirtyHacks.Value = shouldLoadFromFile ? cff.ShowDirtyHacks: Hacks.ShowDirtyHacks.Value; // Get from global config only + DirtyHacks hacks = new (cff.DirtyHacks ?? []); Hacks.Xc2MenuSoftlockFix.Value = hacks.IsEnabled(DirtyHack.Xc2MenuSoftlockFix);