From 9bc1a7f4e4bb7799e2d528ee6db07d74405c570f Mon Sep 17 00:00:00 2001 From: Kawe Mazidjatari <48657826+Mauler125@users.noreply.github.com> Date: Fri, 25 Nov 2022 02:12:54 +0100 Subject: [PATCH] Fix RPak patch header size fields not getting set properly Small mistake that happened when porting the decompressor over to the engine FileSystem API. --- r5dev/vstdlib/callback.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r5dev/vstdlib/callback.cpp b/r5dev/vstdlib/callback.cpp index c4dfef46..f80c6a88 100644 --- a/r5dev/vstdlib/callback.cpp +++ b/r5dev/vstdlib/callback.cpp @@ -542,7 +542,7 @@ void RTech_Decompress_f(const CCommand& args) for (uint32_t i = 1, nPatchOffset = (sizeof(RPakHeader_t) + sizeof(uint64_t)); i <= pHeader->m_nPatchIndex; i++, nPatchOffset += sizeof(RPakPatchCompressedHeader_t)) { - RPakPatchCompressedHeader_t* pPatchHeader = (RPakPatchCompressedHeader_t*)((uintptr_t)pPakBuf + nPatchOffset); + RPakPatchCompressedHeader_t* pPatchHeader = reinterpret_cast(pDecompBuf + nPatchOffset); pPatchHeader->m_nSizeDisk = pPatchHeader->m_nSizeMemory; // Fix size for decompress. } }