Fix a compil warning (due to a bug in code after last change)
This commit is contained in:
parent
5802ede3fd
commit
bf4b3a1ff8
|
@ -365,7 +365,7 @@ public:
|
||||||
void ResetTextAttributes();
|
void ResetTextAttributes();
|
||||||
|
|
||||||
void SetGlyphSize( const VECTOR2I aSize ) { m_attributes.m_Size = aSize; }
|
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 void SetFontBold( const bool aBold ) { m_attributes.m_Bold = aBold; }
|
||||||
inline bool IsFontBold() const { return m_attributes.m_Bold; }
|
inline bool IsFontBold() const { return m_attributes.m_Bold; }
|
||||||
|
|
Loading…
Reference in New Issue