#3305 Fixed class name convention from porting code

This commit is contained in:
Jerry (Xinyu Hou) 2016-06-16 15:41:20 +00:00 committed by Andrew Nelless
parent df8443e795
commit b27a59fb0d
1 changed files with 2 additions and 2 deletions

View File

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