Properly camel-case FILESYSTEM_[un]mountassets()

They are now camel-cased to be consistent with the rest of the
filesystem functions.
This commit is contained in:
Misa
2021-04-03 12:48:47 -07:00
committed by Ethan Lee
parent 9c8ecdb0f4
commit a8a09a207f
5 changed files with 9 additions and 9 deletions

View File

@@ -16,8 +16,8 @@ bool FILESYSTEM_isFile(const char* filename);
bool FILESYSTEM_isMounted(const char* filename);
void FILESYSTEM_loadZip(const char* filename);
void FILESYSTEM_mountassets(const char *path);
void FILESYSTEM_unmountassets(void);
void FILESYSTEM_mountAssets(const char *path);
void FILESYSTEM_unmountAssets(void);
bool FILESYSTEM_isAssetMounted(const char* filename);
void FILESYSTEM_loadFileToMemory(const char *name, unsigned char **mem,