- LWS: fix bugs pointed out by clang leading to path strings being incorrectly build.
parent
d4dcbc4a11
commit
8f2e816042
|
@ -464,7 +464,7 @@ std::string LWSImporter::FindLWOFile(const std::string& in)
|
||||||
std::string tmp;
|
std::string tmp;
|
||||||
if (in.length() > 3 && in[1] == ':'&& in[2] != '\\' && in[2] != '/')
|
if (in.length() > 3 && in[1] == ':'&& in[2] != '\\' && in[2] != '/')
|
||||||
{
|
{
|
||||||
tmp = in[0] + ":\\" + in.substr(2);
|
tmp = in[0] + (":\\" + in.substr(2));
|
||||||
}
|
}
|
||||||
else tmp = in;
|
else tmp = in;
|
||||||
|
|
||||||
|
@ -480,11 +480,12 @@ std::string LWSImporter::FindLWOFile(const std::string& in)
|
||||||
// <folder>\Scenes\<hh>\<*>.lws
|
// <folder>\Scenes\<hh>\<*>.lws
|
||||||
// where <hh> is optional.
|
// where <hh> is optional.
|
||||||
|
|
||||||
std::string test = ".." + io->getOsSeparator() + tmp;
|
std::string test = ".." + (io->getOsSeparator() + tmp);
|
||||||
if (io->Exists(test))
|
if (io->Exists(test)) {
|
||||||
return test;
|
return test;
|
||||||
|
}
|
||||||
|
|
||||||
test = ".." + io->getOsSeparator() + test;
|
test = ".." + (io->getOsSeparator() + test);
|
||||||
if (io->Exists(test)) {
|
if (io->Exists(test)) {
|
||||||
return test;
|
return test;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue