Compare commits

..

1 commit

Author SHA1 Message Date
Goodfeat
9c2ab69b22 Merge branch 'master_skipUserPrMg' into 'master'
Added skip setting "profile management users"

See merge request ryubing/ryujinx!9
2025-03-21 06:30:56 +00:00

View file

@ -117,7 +117,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
private static string GetDiskCachePath() private static string GetDiskCachePath()
{ {
return GraphicsConfig.EnableShaderCache && GraphicsConfig.TitleId != null return GraphicsConfig.EnableShaderCache && GraphicsConfig.TitleId != null
? Path.Combine(AppDataManager.GamesDirPath, GraphicsConfig.TitleId.ToLower(), "cache", "shader") ? Path.Combine(AppDataManager.GamesDirPath, GraphicsConfig.TitleId, "cache", "shader")
: null; : null;
} }