From dab5133e072647a3fef3494154bb2a213e4ce3d6 Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Wed, 8 Jun 2022 23:35:46 +0200 Subject: [PATCH] Rename --- r5dev/vpklib/packedstore.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/r5dev/vpklib/packedstore.cpp b/r5dev/vpklib/packedstore.cpp index 5ab2ecfd..0b046545 100644 --- a/r5dev/vpklib/packedstore.cpp +++ b/r5dev/vpklib/packedstore.cpp @@ -171,10 +171,10 @@ vector CPackedStore::GetEntryPaths(const string& svPathIn, const nlohman { try { - string svBlockPath = ConvertToUnixPath(dir->path().u8string()); - if (jManifest.contains(StringReplaceC(svBlockPath, svPathIn, ""))) + string svEntryPath = ConvertToUnixPath(dir->path().u8string()); + if (jManifest.contains(StringReplaceC(svEntryPath, svPathIn, ""))) { - vPaths.push_back(svBlockPath); + vPaths.push_back(svEntryPath); } } catch (const std::exception& ex)