Fix incorrect GL compatibility version check

This commit is contained in:
baldurk
2020-09-16 11:50:44 +01:00
parent 11719a2588
commit 35bbb0d23e
+1 -1
View File
@@ -1195,7 +1195,7 @@ bool GLInitParams::IsSupportedVersion(uint64_t ver)
return true;
// 0x22 -> 0x23 - Add missing serialisation of maxAniso in texture initial contents.
if(ver == 0x21)
if(ver == 0x22)
return true;
return false;