mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2024-11-05 02:39:41 +01:00
Use SDL_GetBashPath instead of PHYSFS_getBaseDir, latter is made of fail on macOS
This commit is contained in:
parent
076a870ba2
commit
b87f6e487a
1 changed files with 1 additions and 1 deletions
|
@ -118,7 +118,7 @@ int FILESYSTEM_init(char *argvZero, char* baseDir, char *assetsPath)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
SDL_snprintf(output, sizeof(output), "%s%s",
|
SDL_snprintf(output, sizeof(output), "%s%s",
|
||||||
PHYSFS_getBaseDir(),
|
SDL_GetBasePath(),
|
||||||
"data.zip"
|
"data.zip"
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue