diff --git a/compress.c b/compress.c index 07d8644..2ce0036 100755 --- a/compress.c +++ b/compress.c @@ -2,8 +2,8 @@ // Copyright © 2021 by Brett Kuntz. All rights reserved. //---------------------------------------------------------------------------------------------------------------------- #include "compress.h" -#define CUTS_LENGTH 10 -static ui CHAIN_CUTS[CUTS_LENGTH] = { 37, 23, 17, 14, 11, 9, 8, 7, 6, -1 }; +#define CUTS_LENGTH 11 +static ui CHAIN_CUTS[CUTS_LENGTH] = { 37, 23, 17, 14, 11, 9, 8, 7, 6, 6, -1 }; //---------------------------------------------------------------------------------------------------------------------- //#include si main(si argc, s8 ** argv) diff --git a/compress.h b/compress.h index 3c315a7..f12549b 100755 --- a/compress.h +++ b/compress.h @@ -29,7 +29,8 @@ typedef float r32 ; typedef double r64 ; // 8th cut is 8 (p0.03125000) // 9th cut is 7 (p0.02734375) // 10th cut is 6 (p0.02343750) -// 11th cut is ?? +// 11th cut is 6 (p0.02343750) +// 12th cut is ?? #include #include #include