summaryrefslogtreecommitdiff
path: root/src/client.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/client.cpp')
-rw-r--r--src/client.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client.cpp b/src/client.cpp
index 961287868..7a7f420ac 100644
--- a/src/client.cpp
+++ b/src/client.cpp
@@ -418,12 +418,12 @@ void Client::gameInit()
// Add the main data directories to our PhysicsFS search path
if (!settings.options.dataPath.empty())
{
- VirtFs::addDirToSearchPath(settings.options.dataPath,
+ VirtFs::mountDir(settings.options.dataPath,
Append_false);
}
// Add the local data directory to PhysicsFS search path
- VirtFs::addDirToSearchPath(settings.localDataDir,
+ VirtFs::mountDir(settings.localDataDir,
Append_false);
TranslationManager::loadCurrentLang();
#ifdef ENABLE_CUSTOMNLS
@@ -1096,7 +1096,7 @@ int Client::gameExec()
"/local/",
"zip");
- VirtFs::removeDirFromSearchPathSilent(
+ VirtFs::unmountDirSilent(
settings.localDataDir +
dirSeparator +
settings.updatesDir +
@@ -1319,7 +1319,7 @@ int Client::gameExec()
"zip",
Append_false);
- VirtFs::addDirToSearchPath(
+ VirtFs::mountDir(
settings.localDataDir +
dirSeparator +
settings.updatesDir +