1
0
Fork 0
mirror of https://github.com/TerryCavanagh/VVVVVV.git synced 2024-12-22 17:49:43 +01:00

Make sure all PhysFS calls are after init!

This commit is contained in:
Ethan Lee 2020-01-12 10:52:42 -05:00
parent 3e9bd3aaac
commit ec23e4a540

View file

@ -44,8 +44,8 @@ int FILESYSTEM_init(char *argvZero)
char output[MAX_PATH];
int mkdirResult;
PHYSFS_permitSymbolicLinks(1);
PHYSFS_init(argvZero);
PHYSFS_permitSymbolicLinks(1);
/* Determine the OS user directory */
PLATFORM_getOSDirectory(output);