mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-09 01:51:43 +00:00
fix build id case issue for enabled cheats (#2970)
This commit is contained in:
parent
686757105c
commit
e24be5edfc
1 changed files with 1 additions and 1 deletions
|
@ -84,7 +84,7 @@ namespace Ryujinx.Ui.Windows
|
||||||
currentCheatFile = cheat.Path.FullName;
|
currentCheatFile = cheat.Path.FullName;
|
||||||
string parentPath = currentCheatFile.Replace(titleModsPath, "");
|
string parentPath = currentCheatFile.Replace(titleModsPath, "");
|
||||||
|
|
||||||
buildId = System.IO.Path.GetFileNameWithoutExtension(currentCheatFile);
|
buildId = System.IO.Path.GetFileNameWithoutExtension(currentCheatFile).ToUpper();
|
||||||
parentIter = ((TreeStore)_cheatTreeView.Model).AppendValues(false, buildId, parentPath, "");
|
parentIter = ((TreeStore)_cheatTreeView.Model).AppendValues(false, buildId, parentPath, "");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue