mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-11-10 23:31:50 +00:00
use UINT8 * instead of void or Bytef *
This commit is contained in:
parent
6e839d30a2
commit
3e6388c183
1 changed files with 2 additions and 2 deletions
|
@ -1243,8 +1243,8 @@ size_t W_ReadLumpHeaderPwad(UINT16 wad, UINT16 lump, void *dest, size_t size, si
|
|||
#ifdef HAVE_ZLIB
|
||||
case CM_DEFLATE: // Is it compressed via DEFLATE? Very common in ZIPs/PK3s, also what most doom-related editors support.
|
||||
{
|
||||
void *rawData; // The lump's raw data.
|
||||
Bytef *decData; // Lump's decompressed real data.
|
||||
UINT8 *rawData; // The lump's raw data.
|
||||
UINT8 *decData; // Lump's decompressed real data.
|
||||
|
||||
int zErr; // Helper var.
|
||||
z_stream strm;
|
||||
|
|
Loading…
Reference in a new issue