fix build id case issue for enabled cheats (#2970)

This commit is contained in:
Emmanuel Hansen 2022-01-03 20:28:57 +00:00 committed by GitHub
parent 686757105c
commit e24be5edfc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -84,7 +84,7 @@ namespace Ryujinx.Ui.Windows
currentCheatFile = cheat.Path.FullName;
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, "");
}