Fix bug caused by loading certain paths from mod

Don't attempt to load absolute file paths from the mod directory.
This commit is contained in:
Kawe Mazidjatari 2023-03-18 21:36:05 +01:00
parent 1bdc0c466e
commit fcf99d8f78

View File

@ -66,13 +66,19 @@ bool CBaseFileSystem::VCheckDisk(const char* pszFilePath)
}
std::string svFilePath = ConvertToWinPath(pszFilePath);
if (svFilePath.find("\\*\\") != string::npos)
{
// Erase '//*/'.
svFilePath.erase(0, 4);
}
fs::path filePath(svFilePath);
if (filePath.is_absolute())
{
// Skip absolute file paths.
return false;
}
// TODO: obtain 'mod' SearchPath's instead.
svFilePath.insert(0, "platform\\");