diff options
Diffstat (limited to 'src/game/client/components/binds.h')
| -rw-r--r-- | src/game/client/components/binds.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/game/client/components/binds.h b/src/game/client/components/binds.h index 1f73016e..ad51a47c 100644 --- a/src/game/client/components/binds.h +++ b/src/game/client/components/binds.h @@ -9,7 +9,7 @@ class CBinds : public CComponent { char m_aaKeyBindings[KEY_LAST][128]; - int GetKeyId(const char *pKeyName); + int GetKeyID(const char *pKeyName); static void ConBind(IConsole::IResult *pResult, void *pUserData); static void ConUnbind(IConsole::IResult *pResult, void *pUserData); @@ -31,10 +31,10 @@ public: CBindsSpecial m_SpecialBinds; - void Bind(int KeyId, const char *pStr); + void Bind(int KeyID, const char *pStr); void SetDefaults(); void UnbindAll(); - const char *Get(int KeyId); + const char *Get(int KeyID); const char *GetKey(const char *pBindStr); virtual void OnConsoleInit(); |