Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion code/client/cl_console.c
Original file line number Diff line number Diff line change
Expand Up @@ -593,7 +593,7 @@ void Con_Init( void )
con_notifyx = Cvar_Get( "con_notifyX", "0", CVAR_ARCHIVE );
con_notifyy = Cvar_Get( "con_notifyY", "0", CVAR_ARCHIVE );
con_notifykeep = Cvar_Get( "con_notifyKeep", "0", CVAR_ARCHIVE );
con_conspeed = Cvar_Get( "con_togglespeed", "3", 0 );
con_conspeed = Cvar_Get( "scr_conspeed", "3", 0 );
Cvar_SetDescription( con_conspeed, "Console opening/closing scroll speed." );
con_height = Cvar_Get( "con_height", "0.5", CVAR_ARCHIVE_ND );
con_heightShift = Cvar_Get( "con_heightShift", "0.5", CVAR_ARCHIVE_ND ); // same default because Shift+Esc opens the console too
Expand Down
2 changes: 1 addition & 1 deletion code/client/cl_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -3979,7 +3979,7 @@ void CL_Init( void ) {
cl_guidServerUniq = Cvar_Get( "cl_guidServerUniq", "1", CVAR_ARCHIVE_ND );
Cvar_SetDescription( cl_guidServerUniq, "Makes cl_guid unique for each server." );

dl_source = Cvar_Get( "dl_source", "http://ws.q3df.org/getpk3bymapname.php/%m", CVAR_ARCHIVE );
dl_source = Cvar_Get( "dl_source", "http://ws.q3df.org/maps/download/%m", CVAR_ARCHIVE );
Cvar_SetDescription( dl_source, "Cvar must point to download location." );

dl_usebaseq3 = Cvar_Get( "dl_usebaseq3", "0", CVAR_ARCHIVE_ND );
Expand Down
Loading