VFS: Fix some minor VFile issues with FILEs

This commit is contained in:
Jeffrey Pfau 2017-01-11 22:22:44 -08:00
parent dc96bdda85
commit d20e64f96d
3 changed files with 6 additions and 2 deletions

View File

@ -45,6 +45,7 @@ Misc:
- Qt: Expose configuration directory
- Feature: Move game database from flatfile to SQLite3
- GB Audio: Start implementing "zombie" audio (fixes mgba.io/i/389)
- VFS: Fix some minor VFile issues with FILEs
0.5.2: (2016-12-31)
Bugfixes:

View File

@ -85,9 +85,12 @@ struct VDir* VDirOpen7z(const char* path, int flags);
#endif
#if defined(__wii__) || defined(_3DS)
struct VDir* VDeviceList(void);
#endif
#ifdef USE_VFS_FILE
struct VFile* VFileFOpen(const char* path, const char* mode);
struct VFile* VFileFromFILE(FILE* file);
struct VDir* VDeviceList(void);
#endif
void separatePath(const char* path, char* dirname, char* basename, char* extension);

View File

@ -1,4 +1,4 @@
set(USE_VFS_3DS ON CACNE BOOL "Use 3DS-specific file support")
set(USE_VFS_3DS ON CACHE BOOL "Use 3DS-specific file support")
mark_as_advanced(USE_VFS_3DS)
find_program(3DSLINK 3dslink)