From b9cfe31abe9f29d5b87700ab2a73076107e7ebb7 Mon Sep 17 00:00:00 2001 From: kuntz <54650746+kun1z@users.noreply.github.com> Date: Mon, 1 Feb 2021 11:50:49 -0600 Subject: [PATCH] 12th stage test --- compress.c | 4 ++-- compress.h | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) 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