mirror of
https://github.com/dhewm/dhewm3.git
synced 2024-11-26 06:11:26 +00:00
Fix setting z_off64_t in minizconf.h
checking if Z_LARGE64 is defined doesn't make much sense because that is from from zlib which this helps replace.. so on non-windows we always ran into the #define z_off64_t z_off_t case which doesn't give us a 64bit offset on 32bit systems.. Should work better now. fixes #622
This commit is contained in:
parent
60ec3141cf
commit
7354fff406
1 changed files with 1 additions and 1 deletions
|
@ -50,7 +50,7 @@
|
|||
#endif
|
||||
|
||||
// FIXME: why not just set this to int64_t?
|
||||
#if !defined(_WIN32) && defined(Z_LARGE64)
|
||||
#if !defined(_WIN32) && defined(__USE_LARGEFILE64)
|
||||
#define z_off64_t off64_t
|
||||
#else
|
||||
#if defined(_WIN32)
|
||||
|
|
Loading…
Reference in a new issue