Fix #.##.xx version number writing second x digit to first digit (#310)

This commit is contained in:
HeroponRikiBestest
2024-07-04 22:13:49 -04:00
committed by GitHub
parent 861958527d
commit 343ca9497e

View File

@@ -205,7 +205,7 @@ namespace BinaryObjectScanner.Protection
byte[] subSubVersion = new byte[2];
subSubVersion[0] = (byte)(fileContent[index] ^ 42);
index++;
subSubVersion[0] = (byte)(fileContent[index] ^ 8);
subSubVersion[1] = (byte)(fileContent[index] ^ 8);
index += 2;
byte[] subSubSubVersion = new byte[4];