Procházet zdrojové kódy

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

Emmanuel Hansen před 4 roky
rodič
revize
e24be5edfc
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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, "");
                 }