From e83cf9a2f345f53e0888e1960eca54c53761d104 Mon Sep 17 00:00:00 2001 From: notmatthewbeshay <92357869+NotMachow@users.noreply.github.com> Date: Tue, 10 Mar 2026 20:01:25 +1100 Subject: [PATCH] Use standard buffer types for TMS files --- Minecraft.Client/Platform/Common/App_structs.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Minecraft.Client/Platform/Common/App_structs.h b/Minecraft.Client/Platform/Common/App_structs.h index 437a96e08..53680568f 100644 --- a/Minecraft.Client/Platform/Common/App_structs.h +++ b/Minecraft.Client/Platform/Common/App_structs.h @@ -7,8 +7,8 @@ typedef struct wchar_t *wchFilename; eFileExtensionType eEXT; eTMSFileType eTMSType; - PBYTE pbData; - UINT uiSize; + std::uint8_t *pbData; + unsigned int uiSize; int iConfig; // used for texture pack data files } TMS_FILE;