mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-01-31 22:24:08 -06:00
9.34
This commit is contained in:
committed by
Kornel Lesiński
parent
83f8ddcc5b
commit
f08f4dcc3c
Executable → Regular
+2
-2
@@ -12,9 +12,9 @@ struct CInverterTableInitializer
|
||||
{
|
||||
CInverterTableInitializer()
|
||||
{
|
||||
for (int i = 0; i < 256; i++)
|
||||
for (unsigned i = 0; i < 256; i++)
|
||||
{
|
||||
int x = ((i & 0x55) << 1) | ((i & 0xAA) >> 1);
|
||||
unsigned x = ((i & 0x55) << 1) | ((i & 0xAA) >> 1);
|
||||
x = ((x & 0x33) << 2) | ((x & 0xCC) >> 2);
|
||||
kInvertTable[i] = (Byte)(((x & 0x0F) << 4) | ((x & 0xF0) >> 4));
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user