Fix a compil warning (due to a bug in code after last change)

This commit is contained in:
jean-pierre charras 2022-05-14 16:32:04 +02:00
parent 5802ede3fd
commit bf4b3a1ff8
1 changed files with 3 additions and 3 deletions

View File

@ -365,7 +365,7 @@ public:
void ResetTextAttributes();
void SetGlyphSize( const VECTOR2I aSize ) { m_attributes.m_Size = aSize; }
const VECTOR2D& GetGlyphSize() const { return m_attributes.m_Size; }
const VECTOR2I& GetGlyphSize() const { return m_attributes.m_Size; }
inline void SetFontBold( const bool aBold ) { m_attributes.m_Bold = aBold; }
inline bool IsFontBold() const { return m_attributes.m_Bold; }