Skip to content

Commit

Permalink
misc: chore: also ToLower the titleID for the OpenShaderDirectory button
Browse files Browse the repository at this point in the history
  • Loading branch information
GreemDev committed Jan 22, 2025
1 parent 9f53b07 commit 13d411e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Ryujinx/UI/Controls/ApplicationContextMenu.axaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -251,7 +251,7 @@ public void OpenShaderCacheDirectory_Click(object sender, RoutedEventArgs args)
{
if (sender is MenuItem { DataContext: MainWindowViewModel { SelectedApplication: not null } viewModel })
{
string shaderCacheDir = Path.Combine(AppDataManager.GamesDirPath, viewModel.SelectedApplication.IdString, "cache", "shader");
string shaderCacheDir = Path.Combine(AppDataManager.GamesDirPath, viewModel.SelectedApplication.IdString.ToLower(), "cache", "shader");

if (!Directory.Exists(shaderCacheDir))
{
Expand Down

0 comments on commit 13d411e

Please sign in to comment.