forked from mirror/openmw-tes3mp
Fixes #200 - Paths with quotes for data-local option.
Signed-off-by: Lukasz Gromanowski <lgromanowski@gmail.com>
This commit is contained in:
parent
2608491906
commit
9a4cd6c2b1
1 changed files with 1 additions and 0 deletions
|
@ -75,6 +75,7 @@ void ConfigurationManager::processPaths(Files::PathContainer& dataDirs)
|
||||||
{
|
{
|
||||||
path = it->string();
|
path = it->string();
|
||||||
boost::erase_all(path, "\"");
|
boost::erase_all(path, "\"");
|
||||||
|
*it = boost::filesystem::path(path);
|
||||||
|
|
||||||
// Check if path contains a token
|
// Check if path contains a token
|
||||||
if (!path.empty() && *path.begin() == '?')
|
if (!path.empty() && *path.begin() == '?')
|
||||||
|
|
Loading…
Reference in a new issue