Skip to content
Snippets Groups Projects
Commit 3e6388c1 authored by Monster Iestyn's avatar Monster Iestyn
Browse files

use UINT8 * instead of void or Bytef *

parent 6e839d30
No related branches found
No related tags found
1 merge request!488Merge in next and don't billboard papersprites in GL
......@@ -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;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment