Bump shader cache codegen version

That was missing from #4892
This commit is contained in:
Mary 2023-05-12 18:53:14 +02:00 committed by GitHub
parent 5fda543f84
commit 7271f1b18e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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 = 4821;
private const uint CodeGenVersion = 4892;
private const string SharedTocFileName = "shared.toc";
private const string SharedDataFileName = "shared.data";