pso_gc_tools/fuzziqer_prs.h
Gered 2e6d446b1c use old fuzziqer prs implementation to fix some .qst file issues
using the current libsylverant prs implementation to re-compress the
.bin file after setting the download flag in it MAY result in a .qst
file which when loaded by the gamecube client, will cause it to lock-up
with a black screen

simply switching to this older fuzziqer prs implementation fixed this
issue
2021-03-21 20:48:14 -04:00

11 lines
308 B
C

#ifndef PRS_H_INCLUDED
#define PRS_H_INCLUDED
#include <stdint.h>
int fuzziqer_prs_compress(const uint8_t *src, uint8_t **dst, size_t src_len);
int fuzziqer_prs_decompress_buf(const uint8_t *src, uint8_t **dst, size_t src_len);
int fuzziqer_prs_decompress_size(const uint8_t *src, size_t src_len);
#endif