diff options
author | KOLANICH <kolan_n@mail.ru> | 2022-12-19 20:38:04 +0300 |
---|---|---|
committer | KOLANICH <kolan_n@mail.ru> | 2022-12-19 20:39:42 +0300 |
commit | 9eaa53bce2400cc438b78871fd8a143f235174cf (patch) | |
tree | 2053cadc6f3733085c90cb4a65b27a3febb5e27c /src/pklib/pklib.h | |
parent | c3bb7c3640bc6904dbfc529fec9ce12e3017bd83 (diff) |
pklib: Replace magic nums that I have forgotten to replace.
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 c951d11..10d3e1d 100644 --- a/src/pklib/pklib.h +++ b/src/pklib/pklib.h @@ -116,7 +116,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 |