Ver Fonte

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

Emmanuel Hansen há 4 anos atrás
pai
commit
e24be5edfc
1 ficheiros alterados com 1 adições e 1 exclusões
  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, "");
                 }