Skip to content

Commit

Permalink
Make PHYSFS_addToSearchPath() use doMount(), too.
Browse files Browse the repository at this point in the history
  • Loading branch information
icculus committed Aug 30, 2010
1 parent bb9f5e5 commit 5ff1a2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/physfs.c
Expand Up @@ -1365,7 +1365,7 @@ int PHYSFS_mount(const char *newDir, const char *mountPoint, int appendToPath)

int PHYSFS_addToSearchPath(const char *newDir, int appendToPath)
{
return PHYSFS_mount(newDir, NULL, appendToPath);
return doMount(NULL, newDir, NULL, appendToPath);
} /* PHYSFS_addToSearchPath */


Expand Down

0 comments on commit 5ff1a2a

Please sign in to comment.