From 0ff27bb20dc1b1cbdc8a7a34871cda6fbd33fe95 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sun, 5 Jun 2022 22:12:22 +0200 Subject: [PATCH] Fixed bug where logged total directory size is wrong changed writer.GetPosition() to sizeof(VPKDirHeader_t) + m_vHeader.m_nDirectorySize because we seek back to the offset of m_vHeader.m_nDirectorySize. --- r5dev/vpklib/packedstore.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/r5dev/vpklib/packedstore.cpp b/r5dev/vpklib/packedstore.cpp index eb4b7b1f..c1e8312f 100644 --- a/r5dev/vpklib/packedstore.cpp +++ b/r5dev/vpklib/packedstore.cpp @@ -469,7 +469,7 @@ void CPackedStore::PackAll(const VPKPair_t& vPair, const string& svPathIn, const nSharedCount++; bShared = true; - DevMsg(eDLL_T::FS, "Mapping block '%lld' to existing block at '0x%llx' ('%s')\n", i, it->second.m_nArchiveOffset, svEntryHash.c_str()); + DevMsg(eDLL_T::FS, "Mapping block '%lld' ('%s') to existing block at '0x%llx'\n", i, svEntryHash.c_str(), it->second.m_nArchiveOffset); } else // Add entry to hashmap. { @@ -782,7 +782,8 @@ void VPKDir_t::Build(const string& svDirectoryFile, const vectorm_vHeader.m_nDirectorySize); writer.Write(0); - DevMsg(eDLL_T::FS, "*** Build directory file totalling '%llu' bytes with '%llu' entries\n", writer.GetPosition(), vEntryBlocks.size()); + DevMsg(eDLL_T::FS, "*** Build directory file totalling '%llu' bytes with '%llu' entries\n", + sizeof(VPKDirHeader_t) + m_vHeader.m_nDirectorySize, vEntryBlocks.size()); } /////////////////////////////////////////////////////////////////////////////// CPackedStore* g_pPackedStore = new CPackedStore();