Graphics: Save shaders to a lowercase title ID folder.
I think this got reverted in the metal revert commit.removal/ims
parent
4ced04948a
commit
86c2f261af
|
|
@ -117,7 +117,7 @@ namespace Ryujinx.Graphics.Gpu.Shader
|
|||
private static string GetDiskCachePath()
|
||||
{
|
||||
return GraphicsConfig.EnableShaderCache && GraphicsConfig.TitleId != null
|
||||
? Path.Combine(AppDataManager.GamesDirPath, GraphicsConfig.TitleId, "cache", "shader")
|
||||
? Path.Combine(AppDataManager.GamesDirPath, GraphicsConfig.TitleId.ToLower(), "cache", "shader")
|
||||
: null;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue