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