Fix swapped digits in 7-bit mask

Branch_2.1.x
Nathan Crawford 2013-12-05 09:35:11 -05:00
rodzic 72158feeeb
commit 0a2f9efa97
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -187,7 +187,7 @@ namespace PesFile
SByte retval;
// Ignore the 8th bit. (make sure it's 0)
b &= 0xf7;
b &= 0x7f;
// Check for a negative number (check if 7th bit is 1)
if ((b & 0x40) == 0x40)