diff options
author | Mary <mary@mary.zone> | 2023-05-03 11:20:05 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-03 11:20:05 +0200 |
commit | b7d2bff6aab6a2f8eb501af2a12fac87d2834f06 (patch) | |
tree | 59607f4dc029f6bc739dbc9358558d832745c747 /src/Ryujinx/Ui/Windows/CheatWindow.cs | |
parent | 7c327fecb3794ee41df6f3b82e8d18e0942ad1b9 (diff) |
Revert "ModLoader: Fix case sensitivy issues (#4720)" (#4781)1.1.746
This reverts commit cc1a933a2f4adf05a45c7adcf02669c4f423bedb.
Diffstat (limited to 'src/Ryujinx/Ui/Windows/CheatWindow.cs')
-rw-r--r-- | src/Ryujinx/Ui/Windows/CheatWindow.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Ryujinx/Ui/Windows/CheatWindow.cs b/src/Ryujinx/Ui/Windows/CheatWindow.cs index 7dbea012..917603b2 100644 --- a/src/Ryujinx/Ui/Windows/CheatWindow.cs +++ b/src/Ryujinx/Ui/Windows/CheatWindow.cs @@ -28,8 +28,8 @@ namespace Ryujinx.Ui.Windows builder.Autoconnect(this); _baseTitleInfoLabel.Text = $"Cheats Available for {titleName} [{titleId:X16}]"; - string modsBasePath = ModLoader.GetModsBasePath(); - string titleModsPath = ModLoader.GetTitleDir(modsBasePath, titleId.ToString("X16")); + string modsBasePath = virtualFileSystem.ModLoader.GetModsBasePath(); + string titleModsPath = virtualFileSystem.ModLoader.GetTitleDir(modsBasePath, titleId.ToString("X16")); _enabledCheatsPath = System.IO.Path.Combine(titleModsPath, "cheats", "enabled.txt"); |