about summary refs log tree commit diff
path: root/src/game/client/components/console.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/game/client/components/console.h')
-rw-r--r--src/game/client/components/console.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/game/client/components/console.h b/src/game/client/components/console.h
index 003a9423..326fb076 100644
--- a/src/game/client/components/console.h
+++ b/src/game/client/components/console.h
@@ -33,7 +33,10 @@ class CGameConsole : public CComponent
 		int m_CompletionFlagmask;
 		float m_CompletionRenderOffset;
 
-		IConsole::CCommandInfo *m_pCommand;
+		bool m_IsCommand;
+		char m_aCommandName[IConsole::TEMPCMD_NAME_LENGTH];
+		char m_aCommandHelp[IConsole::TEMPCMD_HELP_LENGTH];
+		char m_aCommandParams[IConsole::TEMPCMD_PARAMS_LENGTH];
 
 		CInstance(int t);
 		void Init(CGameConsole *pGameConsole);