mirror of
https://github.com/dhewm/dhewm3-sdk.git
synced 2024-11-24 21:41:23 +00:00
Replace custom unzip functions with standard ones
unz[SG]etCurrentFileInfoPosition() isn't needed anymore, because newer minizip versions have unz[SG]etOffset() for that purpose.
This commit is contained in:
parent
6aea4b59fb
commit
b3dc1ee9c6
1 changed files with 3 additions and 1 deletions
|
@ -32,6 +32,8 @@ If you have questions concerning this license or the applicable additional terms
|
|||
#include "idlib/math/Vector.h"
|
||||
#include "idlib/BitMsg.h"
|
||||
|
||||
#include "framework/Unzip.h"
|
||||
|
||||
/*
|
||||
==============================================================
|
||||
|
||||
|
@ -238,7 +240,7 @@ public:
|
|||
private:
|
||||
idStr name; // name of the file in the pak
|
||||
idStr fullPath; // full file path including pak file name
|
||||
int zipFilePos; // zip file info position in pak
|
||||
ZPOS64_T zipFilePos; // zip file info position in pak
|
||||
int fileSize; // size of the file
|
||||
void * z; // unzip info
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue