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:
parent
3e9bd3aaac
commit
ec23e4a540
1 changed files with 1 additions and 1 deletions
|
@ -44,8 +44,8 @@ int FILESYSTEM_init(char *argvZero)
|
||||||
char output[MAX_PATH];
|
char output[MAX_PATH];
|
||||||
int mkdirResult;
|
int mkdirResult;
|
||||||
|
|
||||||
PHYSFS_permitSymbolicLinks(1);
|
|
||||||
PHYSFS_init(argvZero);
|
PHYSFS_init(argvZero);
|
||||||
|
PHYSFS_permitSymbolicLinks(1);
|
||||||
|
|
||||||
/* Determine the OS user directory */
|
/* Determine the OS user directory */
|
||||||
PLATFORM_getOSDirectory(output);
|
PLATFORM_getOSDirectory(output);
|
||||||
|
|
Loading…
Reference in a new issue