mirror of https://github.com/mgba-emu/mgba.git
Merge pull request #296 from Polynomial-C/master
Don't include internal zip library when USE_MINIZIP is defined.
This commit is contained in:
commit
6f8b4114fc
|
@ -34,7 +34,11 @@ enum {
|
||||||
BLOCK_SIZE = 1024
|
BLOCK_SIZE = 1024
|
||||||
};
|
};
|
||||||
#else
|
#else
|
||||||
|
#ifdef USE_MINIZIP
|
||||||
|
#include <minizip/unzip.h>
|
||||||
|
#else
|
||||||
#include "third-party/zlib/contrib/minizip/unzip.h"
|
#include "third-party/zlib/contrib/minizip/unzip.h"
|
||||||
|
#endif
|
||||||
#include "util/memory.h"
|
#include "util/memory.h"
|
||||||
|
|
||||||
struct VDirEntryZip {
|
struct VDirEntryZip {
|
||||||
|
|
Loading…
Reference in New Issue