Fix shader FSWZADD instruction (#4069)

* Fix shader FSWZADD instruction

* Shader cache version bump
This commit is contained in:
gdkchan
2022-12-08 14:08:07 -03:00
committed by GitHub
parent 9a0330f7f8
commit 8428bb6541
3 changed files with 6 additions and 3 deletions

View File

@ -22,7 +22,7 @@ namespace Ryujinx.Graphics.Gpu.Shader.DiskCache
private const ushort FileFormatVersionMajor = 1;
private const ushort FileFormatVersionMinor = 2;
private const uint FileFormatVersionPacked = ((uint)FileFormatVersionMajor << 16) | FileFormatVersionMinor;
private const uint CodeGenVersion = 4067;
private const uint CodeGenVersion = 4069;
private const string SharedTocFileName = "shared.toc";
private const string SharedDataFileName = "shared.data";