mirror of
https://github.com/GreemDev/Ryujinx.git
synced 2025-01-27 11:43:05 -03:00
misc: chore: Fix shader cache & CPU cache being in different folders on non-Windows
fixes #565
This commit is contained in:
parent
cd8113dadf
commit
9f53b07491
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,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, "cache", "shader")
|
? Path.Combine(AppDataManager.GamesDirPath, GraphicsConfig.TitleId.ToLower(), "cache", "shader")
|
||||||
: null;
|
: null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue