mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-26 12:16:20 +00:00
update zlib to v1.2.8
This commit is contained in:
parent
d86185ca54
commit
88d1195f93
23 changed files with 1920 additions and 912 deletions
2
Externals/zlib/compress.c
vendored
2
Externals/zlib/compress.c
vendored
|
@ -29,7 +29,7 @@ int ZEXPORT compress2 (dest, destLen, source, sourceLen, level)
|
|||
z_stream stream;
|
||||
int err;
|
||||
|
||||
stream.next_in = (Bytef*)source;
|
||||
stream.next_in = (z_const Bytef *)source;
|
||||
stream.avail_in = (uInt)sourceLen;
|
||||
#ifdef MAXSEG_64K
|
||||
/* Check for source > 64K on 16-bit machine: */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue