VFS: Fix build with minizip

This commit is contained in:
Vicki Pfau 2021-02-03 21:08:52 -08:00
parent 517aa353ca
commit 2498f85cda
1 changed files with 1 additions and 1 deletions

View File

@ -79,7 +79,7 @@ struct VFile* VFileFIFO(struct CircleBuffer* backing);
struct VDir* VDirOpen(const char* path);
struct VDir* VDirOpenArchive(const char* path);
#if defined(USE_LIBZIP) || defined(USE_ZLIB)
#if defined(USE_LIBZIP) || defined(USE_MINIZIP)
struct VDir* VDirOpenZip(const char* path, int flags);
#endif