about summary refs log tree commit diff
path: root/src/game/client/components/binds.h
diff options
context:
space:
mode:
authorGreYFoXGTi <GreYFoXGTi@GMaiL.CoM>2011-02-12 12:40:36 +0200
committeroy <Tom_Adams@web.de>2011-02-12 21:18:41 +0100
commit1b2703aaba9ef21b8fca7c12b299fcd0fd4b9251 (patch)
treed4b94b98105c3af23c79bae02a132bfe66738392 /src/game/client/components/binds.h
parente45ad2a085d8f02aadc5d823a1d7dda4e1da70aa (diff)
downloadzcatch-1b2703aaba9ef21b8fca7c12b299fcd0fd4b9251.tar.gz
zcatch-1b2703aaba9ef21b8fca7c12b299fcd0fd4b9251.zip
Refactoring & fixed WEAPONSPEC_GUN in content.py
Diffstat (limited to 'src/game/client/components/binds.h')
-rw-r--r--src/game/client/components/binds.h6
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();