#3305 Fixed class name convention from porting code

This commit is contained in:
Jerry (Xinyu Hou) 2016-06-16 15:41:20 +00:00
parent e742269ada
commit 10a1ae8271
1 changed files with 2 additions and 2 deletions

View File

@ -724,13 +724,13 @@ KeyState::fakeAllKeysUp()
} }
bool bool
CKeyState::fakeMediaKey(KeyID id) KeyState::fakeMediaKey(KeyID id)
{ {
return false; return false;
} }
bool bool
CKeyState::isKeyDown(KeyButton button) const KeyState::isKeyDown(KeyButton button) const
{ {
return (m_keys[button & kButtonMask] > 0); return (m_keys[button & kButtonMask] > 0);
} }