Browse Source

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

Emmanuel Hansen 4 years ago
parent
commit
e24be5edfc
1 changed files with 1 additions and 1 deletions
  1. 1 1
      Ryujinx/Ui/Windows/CheatWindow.cs

+ 1 - 1
Ryujinx/Ui/Windows/CheatWindow.cs

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