From 2e77c584b4646858406801f213a5c380436eacb2 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Sat, 4 Jun 2022 01:17:07 +0200 Subject: [PATCH] Cleanup --- r5dev/vpklib/packedstore.cpp | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/r5dev/vpklib/packedstore.cpp b/r5dev/vpklib/packedstore.cpp index af3eeabc..39e69d72 100644 --- a/r5dev/vpklib/packedstore.cpp +++ b/r5dev/vpklib/packedstore.cpp @@ -166,7 +166,6 @@ vector CPackedStore::GetEntryPaths(const string& svPathIn, const js::jso string svBlockPath = ConvertToUnixPath(dir->path().u8string()); if (jManifest.contains(StringReplaceC(svBlockPath, svPathIn, ""))) { - printf("%s\n", svBlockPath.c_str()); vPaths.push_back(svBlockPath); } } @@ -206,9 +205,6 @@ js::json CPackedStore::GetManifest(const string& svWorkSpace, const string& svMa ostream << svWorkSpace << "manifest/" << svManifestName << ".json"; fs::path fsPath = fs::current_path() /= ostream.str(); - - printf("%s\n", fsPath.string().c_str()); - if (fs::exists(fsPath)) { js::json jsOut; @@ -548,7 +544,7 @@ VPKEntryBlock_t::VPKEntryBlock_t(CIOStream* pReader, string svBlockPath) this->m_svBlockPath = svBlockPath; // Set path of block. pReader->Read(this->m_nCrc32); // - pReader->Read(this->m_nPreloadData); // + pReader->Read(this->m_nPreloadData); // pReader->Read(this->m_iArchiveIndex); // do // Loop through all entries in the block and push them to the vector.