From c0e59f652e67b3b8f709ce5a0549ac2d57ae330f Mon Sep 17 00:00:00 2001 From: notmatthewbeshay <92357869+NotMachow@users.noreply.github.com> Date: Wed, 11 Mar 2026 01:42:06 +1100 Subject: [PATCH] Use standard banned list buffers in app structs --- Minecraft.Client/Platform/Common/App_structs.h | 4 ++-- Minecraft.Client/Platform/Common/Consoles_App.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Minecraft.Client/Platform/Common/App_structs.h b/Minecraft.Client/Platform/Common/App_structs.h index 0775cf0c0..1d73e7c1b 100644 --- a/Minecraft.Client/Platform/Common/App_structs.h +++ b/Minecraft.Client/Platform/Common/App_structs.h @@ -196,8 +196,8 @@ FEATURE_DATA; // banned list typedef struct { - BYTE *pBannedList; - DWORD dwBytes; + std::uint8_t *pBannedList; + unsigned int dwBytes; } BANNEDLIST; diff --git a/Minecraft.Client/Platform/Common/Consoles_App.h b/Minecraft.Client/Platform/Common/Consoles_App.h index 9d205621b..2bb35300c 100644 --- a/Minecraft.Client/Platform/Common/Consoles_App.h +++ b/Minecraft.Client/Platform/Common/Consoles_App.h @@ -806,8 +806,8 @@ private: std::uint32_t m_dwAdditionalModelParts[XUSER_MAX_COUNT]; - BYTE *m_pBannedListFileBuffer; - DWORD m_dwBannedListFileSize; + std::uint8_t *m_pBannedListFileBuffer; + unsigned int m_dwBannedListFileSize; public: DWORD m_dwDLCFileSize;