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 // banned list
typedef struct typedef struct
{ {
BYTE *pBannedList; std::uint8_t *pBannedList;
DWORD dwBytes; unsigned int dwBytes;
} }
BANNEDLIST; BANNEDLIST;

View file

@ -806,8 +806,8 @@ private:
std::uint32_t m_dwAdditionalModelParts[XUSER_MAX_COUNT]; std::uint32_t m_dwAdditionalModelParts[XUSER_MAX_COUNT];
BYTE *m_pBannedListFileBuffer; std::uint8_t *m_pBannedListFileBuffer;
DWORD m_dwBannedListFileSize; unsigned int m_dwBannedListFileSize;
public: public:
DWORD m_dwDLCFileSize; DWORD m_dwDLCFileSize;