Revert "ModLoader: Fix case sensitivy issues (#4720)" (#4781)

This reverts commit e283e196f8.
This commit is contained in:
Mary 2023-05-03 11:20:05 +02:00 committed by GitHub
parent 21b07c4f5f
commit 68827e0f1a
7 changed files with 147 additions and 158 deletions

View file

@ -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");