From 024f7f7878e29642b041c9481049fea7259c8b8d Mon Sep 17 00:00:00 2001 From: skyjake Date: Thu, 22 Nov 2012 10:09:19 +0200 Subject: [PATCH] Unix: Fixed build --- doomsday/engine/src/dd_main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doomsday/engine/src/dd_main.cpp b/doomsday/engine/src/dd_main.cpp index 8e60403c81..ceaad815c2 100644 --- a/doomsday/engine/src/dd_main.cpp +++ b/doomsday/engine/src/dd_main.cpp @@ -397,7 +397,7 @@ static void createPackagesNamespace() if(UnixInfo_GetConfigValue("paths", "iwaddir", fn, FILENAME_T_MAXLEN)) { NativePath path = de::App::app().commandLine().startupPath() / fn; - fnamespace.addSearchPath(FS1::DefaultPaths, SearchPath(de::Uri::fromNativeDirPath(path), SearchPath::NoDescend)); + fnamespace.addSearchPath(SearchPath(de::Uri::fromNativeDirPath(path), SearchPath::NoDescend)); LOG_INFO("Using paths.iwaddir: %s") << path.pretty(); } #endif