From e5d414fc5baefa4f3ea0f59464fe5ec9bfe608c9 Mon Sep 17 00:00:00 2001 From: kervala Date: Thu, 14 Jan 2016 10:21:50 +0100 Subject: [PATCH] Fixed: Compilation under OS X --- code/ryzom/client/src/init.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/ryzom/client/src/init.cpp b/code/ryzom/client/src/init.cpp index b0098ccba..35a2c1302 100644 --- a/code/ryzom/client/src/init.cpp +++ b/code/ryzom/client/src/init.cpp @@ -635,7 +635,7 @@ static void addPaths(IProgressCallback &progress, const std::vector directoryPrefixes.push_back(CPath::standardizePath(getAppBundlePath() + "/Contents/Resources")); // check in same directory as bundle (Steam) - directoryPrefixes.push_back(CPath::standardizePath(getAppBundlePath()); + directoryPrefixes.push_back(CPath::standardizePath(getAppBundlePath())); #elif defined(NL_OS_UNIX) if (CFile::isDirectory(getRyzomSharePrefix())) directoryPrefixes.push_back(CPath::standardizePath(getRyzomSharePrefix())); #endif