mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 00:58:30 -05:00
Fixed GCC warning.
This commit is contained in:
parent
f492d7d113
commit
c94e5122d6
1 changed files with 1 additions and 4 deletions
|
@ -611,10 +611,7 @@ struct Imgui
|
||||||
m_left = left;
|
m_left = left;
|
||||||
m_scroll = _scroll;
|
m_scroll = _scroll;
|
||||||
|
|
||||||
if (_inputChar > 0x80)
|
_inputChar = 0 > _inputChar ? 0 : _inputChar;
|
||||||
{
|
|
||||||
_inputChar = 0;
|
|
||||||
}
|
|
||||||
m_lastChar = m_char;
|
m_lastChar = m_char;
|
||||||
m_char = _inputChar;
|
m_char = _inputChar;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue