Bladeren bron

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

Emmanuel Hansen 4 jaren geleden
bovenliggende
commit
e24be5edfc
1 gewijzigde bestanden met toevoegingen van 1 en 1 verwijderingen
  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, "");
                 }