mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-12-23 01:59:43 +01:00
Un-export FILESYSTEM_mount()
This function is never used outside of FileSystemUtils.cpp; there is no reason to export it.
This commit is contained in:
parent
5060b4dfe3
commit
1e375f9ecf
2 changed files with 1 additions and 2 deletions
|
@ -213,7 +213,7 @@ static bool FILESYSTEM_exists(const char *fname)
|
|||
return PHYSFS_exists(fname);
|
||||
}
|
||||
|
||||
void FILESYSTEM_mount(const char *fname)
|
||||
static void FILESYSTEM_mount(const char *fname)
|
||||
{
|
||||
const char* real_dir = PHYSFS_getRealDir(fname);
|
||||
const char* dir_separator;
|
||||
|
|
|
@ -15,7 +15,6 @@ char *FILESYSTEM_getUserLevelDirectory(void);
|
|||
bool FILESYSTEM_isFile(const char* filename);
|
||||
bool FILESYSTEM_isMounted(const char* filename);
|
||||
|
||||
void FILESYSTEM_mount(const char *fname);
|
||||
void FILESYSTEM_loadZip(const char* filename);
|
||||
void FILESYSTEM_mountassets(const char *path);
|
||||
void FILESYSTEM_unmountassets(void);
|
||||
|
|
Loading…
Reference in a new issue