1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-01-16 18:59:57 +00:00

Fixed an issue with some paths not concatenating properly.

This commit is contained in:
Alexander "Ace" Olofsson 2012-09-09 16:28:02 +02:00
parent a1d2505049
commit 7934d8abd9

View file

@ -69,7 +69,7 @@ struct FixedPath
* \param [in] application_name - Name of the application
*/
FixedPath(const std::string& application_name)
: mPath(application_name)
: mPath(application_name + "/")
, mUserPath(mPath.getUserPath())
, mGlobalPath(mPath.getGlobalPath())
, mLocalPath(mPath.getLocalPath())