mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 18:45:54 -05:00
Fixed GCC warning.
This commit is contained in:
parent
b25a7cc9ff
commit
7f004af0d6
1 changed files with 1 additions and 1 deletions
|
@ -207,9 +207,9 @@ TextBuffer::TextBuffer(FontManager* _fontManager)
|
|||
, m_vertexBuffer(new TextVertex[MAX_BUFFERED_CHARACTERS * 4])
|
||||
, m_indexBuffer(new uint16_t[MAX_BUFFERED_CHARACTERS * 6])
|
||||
, m_styleBuffer(new uint8_t[MAX_BUFFERED_CHARACTERS * 4])
|
||||
, m_vertexCount(0)
|
||||
, m_indexCount(0)
|
||||
, m_lineStartIndex(0)
|
||||
, m_vertexCount(0)
|
||||
{
|
||||
m_rectangle.width = 0;
|
||||
m_rectangle.height = 0;
|
||||
|
|
Loading…
Reference in a new issue