Use standard banned list buffers in app structs

This commit is contained in:
notmatthewbeshay 2026-03-11 01:42:06 +11:00
parent 3f8374bc45
commit c0e59f652e
2 changed files with 4 additions and 4 deletions

View file

@ -196,8 +196,8 @@ FEATURE_DATA;
// banned list
typedef struct
{
BYTE *pBannedList;
DWORD dwBytes;
std::uint8_t *pBannedList;
unsigned int dwBytes;
}
BANNEDLIST;

View file

@ -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;