Преглед на файлове

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

Emmanuel Hansen преди 4 години
родител
ревизия
e24be5edfc
променени са 1 файла, в които са добавени 1 реда и са изтрити 1 реда
  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, "");
                 }