From 99c763e68a0b8c192d26d23c88ee527bc86bea79 Mon Sep 17 00:00:00 2001 From: Nikita Edel Date: Thu, 12 Mar 2026 17:33:55 +0100 Subject: [PATCH] typo --- Minecraft.Client/Platform/Common/DLC/DLCManager.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.Client/Platform/Common/DLC/DLCManager.cpp b/Minecraft.Client/Platform/Common/DLC/DLCManager.cpp index c87d2b85a..7eaaffb51 100644 --- a/Minecraft.Client/Platform/Common/DLC/DLCManager.cpp +++ b/Minecraft.Client/Platform/Common/DLC/DLCManager.cpp @@ -411,7 +411,7 @@ bool DLCManager::readDLCDataFile(DWORD &dwFilesProcessed, const std::string &pat } // a bunch of makros to reduce memcpy and offset boilerplate -#define DLC_READ_UINT(out, buf, off) memcpy(out, (buf) + (off), sizeof(unsigned int)) +#define DLC_READ_UINT(out, buf, off) memcpy((out), (buf) + (off), sizeof(unsigned int)) #define DLC_READ_PARAM(out, buf, off) memcpy((out), (buf) + (off), sizeof(C4JStorage::DLC_FILE_PARAM))