summaryrefslogtreecommitdiff
path: root/src/cl_null.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/cl_null.c')
-rw-r--r--src/cl_null.c17
1 files changed, 10 insertions, 7 deletions
diff --git a/src/cl_null.c b/src/cl_null.c
index 30aebbf..43575fc 100644
--- a/src/cl_null.c
+++ b/src/cl_null.c
@@ -24,20 +24,23 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
#include "common.h"
#include "files.h"
-qboolean CL_CheatsOK( void ) {
+qboolean CL_CheatsOK(void)
+{
// developer option
- if( Cvar_VariableInteger( "cheats" ) ) {
+ if (Cvar_VariableInteger("cheats")) {
return qtrue;
}
return qfalse;
}
-static void Key_Bind_Null_f( void ) {
+static void Key_Bind_Null_f(void)
+{
}
-void Key_Init( void ) {
- Cmd_AddCommand( "bind", Key_Bind_Null_f );
- Cmd_AddCommand( "unbind", Key_Bind_Null_f );
- Cmd_AddCommand( "unbindall", Key_Bind_Null_f );
+void Key_Init(void)
+{
+ Cmd_AddCommand("bind", Key_Bind_Null_f);
+ Cmd_AddCommand("unbind", Key_Bind_Null_f);
+ Cmd_AddCommand("unbindall", Key_Bind_Null_f);
}