mirror of
https://github.com/scratchfoundation/bgfx.git
synced 2024-11-28 10:35:43 -05:00
Fixed compiler warning.
This commit is contained in:
parent
81c93758e3
commit
f5afbffe64
1 changed files with 0 additions and 3 deletions
|
@ -311,9 +311,6 @@ namespace entry
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
enum { ShiftMask = Modifier::LeftShift|Modifier::RightShift };
|
enum { ShiftMask = Modifier::LeftShift|Modifier::RightShift };
|
||||||
const bool nonShiftModifiers = (0 != (modifiers&(~ShiftMask) ) );
|
|
||||||
const bool isCharPressed = (Key::Key0 <= key && key <= Key::KeyZ) || (Key::Esc <= key && key <= Key::Minus);
|
|
||||||
const bool isText = isCharPressed && !nonShiftModifiers;
|
|
||||||
m_eventQueue.postCharEvent(s_defaultWindow, 1, pressedChar);
|
m_eventQueue.postCharEvent(s_defaultWindow, 1, pressedChar);
|
||||||
m_eventQueue.postKeyEvent(s_defaultWindow, key, modifiers, true);
|
m_eventQueue.postKeyEvent(s_defaultWindow, key, modifiers, true);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue