mirror of
https://github.com/dhewm/dhewm3.git
synced 2025-02-16 17:21:21 +00:00
Made compress_for_stbiw static
This commit is contained in:
parent
e74e8f5d7c
commit
d468e91d29
1 changed files with 1 additions and 1 deletions
|
@ -49,7 +49,7 @@ If you have questions concerning this license or the applicable additional terms
|
|||
|
||||
#include <zlib.h>
|
||||
|
||||
unsigned char* compress_for_stbiw(unsigned char* data, int data_len, int* out_len, int quality)
|
||||
static unsigned char* compress_for_stbiw(unsigned char* data, int data_len, int* out_len, int quality)
|
||||
{
|
||||
uLongf bufSize = compressBound(data_len);
|
||||
// note that buf will be free'd by stb_image_write.h
|
||||
|
|
Loading…
Reference in a new issue