From 7934d8abd9ff6b3d4f2eb5cea514009e660f9556 Mon Sep 17 00:00:00 2001 From: "Alexander \"Ace\" Olofsson" Date: Sun, 9 Sep 2012 16:28:02 +0200 Subject: [PATCH] Fixed an issue with some paths not concatenating properly. --- components/files/fixedpath.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/files/fixedpath.hpp b/components/files/fixedpath.hpp index 560a1ab45..dce4f96c2 100644 --- a/components/files/fixedpath.hpp +++ b/components/files/fixedpath.hpp @@ -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())