summaryrefslogtreecommitdiff
path: root/source/cl_console.c
diff options
context:
space:
mode:
authorAndrey Nazarov <skuller@skuller.net>2008-04-02 23:03:09 +0000
committerAndrey Nazarov <skuller@skuller.net>2008-04-02 23:03:09 +0000
commit7ec50f12252b4dfb97f3249ccf05a771b98785c1 (patch)
tree279e4e8bd7b940368331a43869c165de9637ae99 /source/cl_console.c
parent80e48417564f1ce50a39a7c552ad95e651362c1f (diff)
Use size_t instead of int where possible.
Added initial support for Win64 port.
Diffstat (limited to 'source/cl_console.c')
-rw-r--r--source/cl_console.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/cl_console.c b/source/cl_console.c
index c666365..dcf78e2 100644
--- a/source/cl_console.c
+++ b/source/cl_console.c
@@ -406,8 +406,8 @@ void Con_Init( void ) {
con_scroll = Cvar_Get( "con_scroll", "0", CVAR_ARCHIVE );
con_history = Cvar_Get( "con_history", "0", 0 );
- IF_Init( &con.prompt.inputLine, 1, MAX_FIELD_TEXT );
- IF_Init( &con.chatPrompt.inputLine, 1, MAX_FIELD_TEXT );
+ IF_Init( &con.prompt.inputLine, 1, MAX_FIELD_TEXT, NULL );
+ IF_Init( &con.chatPrompt.inputLine, 1, MAX_FIELD_TEXT, NULL );
con.prompt.printf = Con_Printf;