From 27ae7dddf02399ffaa69f189280e130c9a70ec7e Mon Sep 17 00:00:00 2001 From: kervala Date: Thu, 14 Jan 2016 21:27:10 +0100 Subject: [PATCH] Fixed: Right directory under OS X --HG-- branch : develop --- 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 35a2c1302..c220358c5 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