Skip to content

Commit

Permalink
Fix the modification note to NanaZip.Core\SevenZip\CPP\7zip\Common\Cr…
Browse files Browse the repository at this point in the history
…eateCoder.cpp.
  • Loading branch information
MouriNaruto committed Dec 24, 2024
1 parent 996f54c commit 27c6fe8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions NanaZip.Core/SevenZip/CPP/7zip/Common/CreateCoder.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@
#include "FilterCoder.h"
#include "RegisterCodec.h"

// **************** NanaZip Modification Start ****************
// static const unsigned kNumCodecsMax = 64;
static const unsigned kNumCodecsMax = 256;
// **************** NanaZip Modification End ****************
extern
unsigned g_NumCodecs;
unsigned g_NumCodecs = 0;
Expand All @@ -35,7 +38,10 @@ void RegisterCodec(const CCodecInfo *codecInfo) throw()
g_Codecs[g_NumCodecs++] = codecInfo;
}

// **************** NanaZip Modification Start ****************
// static const unsigned kNumHashersMax = 32;
static const unsigned kNumHashersMax = 256;
// **************** NanaZip Modification End ****************
extern
unsigned g_NumHashers;
unsigned g_NumHashers = 0;
Expand Down

0 comments on commit 27c6fe8

Please sign in to comment.