From 8f9e0fa6022f14439b076b2bee97482de07fd37c Mon Sep 17 00:00:00 2001 From: Maxim Telezhenko Date: Mon, 2 Sep 2019 21:23:38 +0300 Subject: [PATCH] Update ICvar::RegisterConCommand params (#60) --- public/icvar.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/icvar.h b/public/icvar.h index 7a9b066c..ffb795bd 100644 --- a/public/icvar.h +++ b/public/icvar.h @@ -62,7 +62,7 @@ public: virtual CVarDLLIdentifier_t AllocateDLLIdentifier() = 0; // Register, unregister commands - virtual void RegisterConCommand( ConCommandBase *pCommandBase ) = 0; + virtual void RegisterConCommand( ConCommandBase *pCommandBase, bool unknown=true ) = 0; virtual void UnregisterConCommand( ConCommandBase *pCommandBase ) = 0; virtual void UnregisterConCommands( CVarDLLIdentifier_t id ) = 0;