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.