mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-05-30 08:40:39 +00:00
The init sequence cleanup!
Also broke up client.h into a lot of smaller headers. Oh, software rendering works again. And yes, this does hit a hell of a lot of files.
This commit is contained in:
parent
b0d4014885
commit
13bd5ce012
92 changed files with 912 additions and 422 deletions
|
@ -269,8 +269,6 @@ void Con_Init (void)
|
|||
//
|
||||
// register our commands
|
||||
//
|
||||
con_notifytime = Cvar_Get("con_notifytime", "3", CVAR_NONE, "None");
|
||||
|
||||
Cmd_AddCommand ("toggleconsole", Con_ToggleConsole_f);
|
||||
Cmd_AddCommand ("togglechat", Con_ToggleChat_f);
|
||||
Cmd_AddCommand ("messagemode", Con_MessageMode_f);
|
||||
|
@ -279,6 +277,11 @@ void Con_Init (void)
|
|||
con_initialized = true;
|
||||
}
|
||||
|
||||
void Con_Init_Cvars (void)
|
||||
{
|
||||
con_notifytime = Cvar_Get("con_notifytime", "3", CVAR_NONE, "None");
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
===============
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue