mirror of
https://github.com/Xevion/easy7zip.git
synced 2026-02-01 12:24:16 -06:00
4.20
This commit is contained in:
committed by
Kornel Lesiński
parent
8c1b5c7b7e
commit
3c510ba80b
@@ -7,7 +7,7 @@
|
||||
namespace NStream {
|
||||
namespace NLSBF {
|
||||
|
||||
BYTE kInvertTable[256];
|
||||
Byte kInvertTable[256];
|
||||
|
||||
class CInverterTableInitializer
|
||||
{
|
||||
@@ -16,8 +16,8 @@ public:
|
||||
{
|
||||
for(int i = 0; i < 256; i++)
|
||||
{
|
||||
BYTE b = BYTE(i);
|
||||
BYTE bInvert = 0;
|
||||
Byte b = Byte(i);
|
||||
Byte bInvert = 0;
|
||||
for(int j = 0; j < 8; j++)
|
||||
{
|
||||
bInvert <<= 1;
|
||||
|
||||
Reference in New Issue
Block a user