mirror of https://github.com/mgba-emu/mgba.git
VFS: Fix some minor VFile issues with FILEs
This commit is contained in:
parent
dc96bdda85
commit
d20e64f96d
1
CHANGES
1
CHANGES
|
@ -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:
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue