mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-25 09:08:22 -05:00
Merge branch 'master' of github.com:bkaradzic/bgfx
This commit is contained in:
commit
112f04b2f8
1 changed files with 1 additions and 4 deletions
|
@ -611,10 +611,7 @@ struct Imgui
|
|||
m_left = left;
|
||||
m_scroll = _scroll;
|
||||
|
||||
if (_inputChar > 0x80)
|
||||
{
|
||||
_inputChar = 0;
|
||||
}
|
||||
_inputChar = 0 > _inputChar ? 0 : _inputChar;
|
||||
m_lastChar = m_char;
|
||||
m_char = _inputChar;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue