mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-20 05:53:50 +00:00
Fixed an issue with some paths not concatenating properly.
This commit is contained in:
parent
a1d2505049
commit
7934d8abd9
1 changed files with 1 additions and 1 deletions
|
@ -69,7 +69,7 @@ struct FixedPath
|
||||||
* \param [in] application_name - Name of the application
|
* \param [in] application_name - Name of the application
|
||||||
*/
|
*/
|
||||||
FixedPath(const std::string& application_name)
|
FixedPath(const std::string& application_name)
|
||||||
: mPath(application_name)
|
: mPath(application_name + "/")
|
||||||
, mUserPath(mPath.getUserPath())
|
, mUserPath(mPath.getUserPath())
|
||||||
, mGlobalPath(mPath.getGlobalPath())
|
, mGlobalPath(mPath.getGlobalPath())
|
||||||
, mLocalPath(mPath.getLocalPath())
|
, mLocalPath(mPath.getLocalPath())
|
||||||
|
|
Loading…
Reference in a new issue