diff options
Diffstat (limited to 'engines/wintermute/Base/BKeyboardState.h')
-rw-r--r-- | engines/wintermute/Base/BKeyboardState.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/wintermute/Base/BKeyboardState.h b/engines/wintermute/Base/BKeyboardState.h index 982dc2998f..da324b86a3 100644 --- a/engines/wintermute/Base/BKeyboardState.h +++ b/engines/wintermute/Base/BKeyboardState.h @@ -50,13 +50,13 @@ public: DECLARE_PERSISTENT(CBKeyboardState, CBScriptable)
CBKeyboardState(CBGame *inGame);
virtual ~CBKeyboardState();
- HRESULT ReadKey(Common::Event *event);
+ HRESULT readKey(Common::Event *event);
void handleKeyPress(Common::Event *event);
void handleKeyRelease(Common::Event *event);
- static bool IsShiftDown();
- static bool IsControlDown();
- static bool IsAltDown();
+ static bool isShiftDown();
+ static bool isControlDown();
+ static bool isAltDown();
// scripting interface
virtual CScValue *scGetProperty(const char *name);
@@ -66,8 +66,8 @@ public: private:
uint8 *_keyStates;
- uint32 KeyCodeToVKey(Common::Event *event);
- Common::KeyCode VKeyToKeyCode(uint32 vkey); //TODO, reimplement using ScummVM-backend
+ uint32 keyCodeToVKey(Common::Event *event);
+ Common::KeyCode vKeyToKeyCode(uint32 vkey); //TODO, reimplement using ScummVM-backend
};
} // end of namespace WinterMute
|