diff options
author | Ladislav Zezula <zezula@volny.cz> | 2022-12-19 23:01:45 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-12-19 23:01:45 +0100 |
commit | 4145cbdbfb37d30c8f99072e7a7815033f41e729 (patch) | |
tree | ad2eb17745a9e695425505fffc8c8d3a9ad0f9c7 /src/pklib/pklib.h | |
parent | b951d3a40846e5af80a5e2baf55e84a0acffd854 (diff) | |
parent | 9eaa53bce2400cc438b78871fd8a143f235174cf (diff) |
Merge pull request #274 from KOLANICH-libs/sizes_enums
Merged. Thank you for the contribution.
Diffstat (limited to 'src/pklib/pklib.h')
-rw-r--r-- | src/pklib/pklib.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/pklib/pklib.h b/src/pklib/pklib.h index b7fb8d4..e8b939b 100644 --- a/src/pklib/pklib.h +++ b/src/pklib/pklib.h @@ -118,7 +118,7 @@ typedef struct unsigned int (*read_buf)(char *buf, unsigned int *size, void *param); // Pointer to function that reads data from the input stream void (*write_buf)(char *buf, unsigned int *size, void *param);// Pointer to function that writes data to the output stream - unsigned char out_buff[0x2204]; // 0030: Output circle buffer. + unsigned char out_buff[BUFF_SIZE]; // 0030: Output circle buffer. // 0x0000 - 0x0FFF: Previous uncompressed data, kept for repetitions // 0x1000 - 0x1FFF: Currently decompressed data // 0x2000 - 0x2203: Reserve space for the longest possible repetition |