diff options
| -rw-r--r-- | Ryujinx/Ui/Windows/CheatWindow.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Ryujinx/Ui/Windows/CheatWindow.cs b/Ryujinx/Ui/Windows/CheatWindow.cs index e4f6c44e..dd4f9331 100644 --- a/Ryujinx/Ui/Windows/CheatWindow.cs +++ b/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, ""); } |
