mirror of
https://github.com/SabreTools/BinaryObjectScanner.git
synced 2026-04-23 06:34:03 +00:00
Fix #.##.xx version number writing second x digit to first digit (#310)
This commit is contained in:
committed by
GitHub
parent
861958527d
commit
343ca9497e
@@ -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];
|
||||
|
||||
Reference in New Issue
Block a user