From e24be5edfc6a3eae009dc6d4c4e7f498ad0596b9 Mon Sep 17 00:00:00 2001 From: Emmanuel Hansen Date: Mon, 3 Jan 2022 20:28:57 +0000 Subject: [PATCH] fix build id case issue for enabled cheats (#2970) --- Ryujinx/Ui/Windows/CheatWindow.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Ryujinx/Ui/Windows/CheatWindow.cs b/Ryujinx/Ui/Windows/CheatWindow.cs index e4f6c44eb..dd4f93316 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, ""); }