From 5ff1a2a12ede5c2bfe575541d16a84c2b84793cf Mon Sep 17 00:00:00 2001 From: "Ryan C. Gordon" Date: Mon, 30 Aug 2010 02:39:28 -0400 Subject: [PATCH] Make PHYSFS_addToSearchPath() use doMount(), too. --- src/physfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/physfs.c b/src/physfs.c index e05447e0..cc74e770 100644 --- a/src/physfs.c +++ b/src/physfs.c @@ -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 */