1
0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-06-02 11:03:32 +02: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:
Misa 2021-04-03 02:11:02 -07:00 committed by Ethan Lee
parent 5060b4dfe3
commit 1e375f9ecf
2 changed files with 1 additions and 2 deletions

View File

@ -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;

View File

@ -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);