Fix incorrect version check

This commit is contained in:
baldurk
2026-01-31 20:40:59 +00:00
parent 1c2cf527da
commit 6a791de9bd
+1 -1
View File
@@ -529,7 +529,7 @@ bool D3D11InitParams::IsSupportedVersion(uint64_t ver)
return true;
// 0x13 -> 0x14 - added serialised annotations
if(ver == 0x12)
if(ver == 0x13)
return true;
return false;