Merge branch 'master' of github.com:bkaradzic/bgfx

This commit is contained in:
Branimir Karadžić 2014-08-06 21:17:51 -07:00
commit 112f04b2f8

View file

@ -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;
}