Fix VPK root files bug

Files names of files located in the root of a VPK weren't formatted properly
This commit is contained in:
Kawe Mazidjatari 2022-06-05 18:01:23 +02:00
parent 92daef5a32
commit d005626aa0
2 changed files with 3 additions and 1 deletions

View File

@ -314,10 +314,12 @@ string CreateDirectories(string svInput, bool bWindows)
if (bWindows)
{
StringReplace(svInput, "\\ \\", "\\");
StringReplace(svInput, " \\", "");
}
else
{
StringReplace(svInput, "/ /", "/");
StringReplace(svInput, " /", "");
}
fs::path fspPathOut(svInput);

View File

@ -523,7 +523,7 @@ void CPackedStore::UnpackAll(const VPKDir_t& vpkDir, const string& svPathOut)
}
else // Chunk belongs to this block.
{
string svFilePath = CreateDirectories(svPathOut + vpkDir.m_vvEntryBlocks[j].m_svBlockPath, true);
string svFilePath = CreateDirectories(svPathOut + vpkDir.m_vvEntryBlocks[j].m_svBlockPath);
CIOStream oStream(svFilePath, CIOStream::Mode_t::WRITE);
if (!oStream.IsWritable())