diff options
Diffstat (limited to 'include/m_clistint.h')
-rw-r--r-- | include/m_clistint.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/m_clistint.h b/include/m_clistint.h index d8a12dcc63..339ed32aa8 100644 --- a/include/m_clistint.h +++ b/include/m_clistint.h @@ -99,10 +99,10 @@ struct ClcFontInfo struct ClcContactBase
{
- __forceinline BYTE getType() const { return (this == nullptr) ? 0 : type; }
+ __forceinline uint8_t getType() const { return (this == nullptr) ? 0 : type; }
- BYTE type;
- BYTE flags;
+ uint8_t type;
+ uint8_t flags;
union {
struct {
int iImage;
|