mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
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:
parent
1bdc0c466e
commit
fcf99d8f78
@ -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\\");
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user