mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fixed: Bad detection if a file is in a BNP under Linux
This commit is contained in:
parent
7c7042ea3c
commit
a67c2dee8c
1 changed files with 6 additions and 5 deletions
|
@ -4703,12 +4703,13 @@ bool CInterfaceParser::loadLUA(const std::string &fileName, std::string &error)
|
|||
}
|
||||
|
||||
bool isInData = false;
|
||||
if (pathName.find ("@") != string::npos)
|
||||
std::string::size_type pos = pathName.find("@");
|
||||
if (pos != string::npos)
|
||||
{
|
||||
if (CBigFile::getInstance().getBigFileName(pathName.substr(0, pathName.find ("@"))) != "data/"+pathName.substr(0, pathName.find ("@")))
|
||||
isInData = false;
|
||||
else
|
||||
isInData = true;
|
||||
std::string bigFilename = CBigFile::getInstance().getBigFileName(pathName.substr(0, pos));
|
||||
std::string path = "data/"+pathName.substr(0, pos);
|
||||
|
||||
isInData = bigFilename.find(path) != std::string::npos;
|
||||
}
|
||||
|
||||
if (needCheck && !isInData)
|
||||
|
|
Loading…
Reference in a new issue