more uquake link fixups

This commit is contained in:
Bill Currie 2000-02-10 06:03:16 +00:00
parent 28088048b3
commit ccbb656250
2 changed files with 4 additions and 1 deletions

View file

@ -77,6 +77,9 @@ cvar_t pausable = {"pausable","1"};
cvar_t temp1 = {"temp1","0"}; cvar_t temp1 = {"temp1","0"};
/* Should server filter out \n & \r in player names ? */ /* Should server filter out \n & \r in player names ? */
cvar_t sv_filter = {"sv_filter","1"}; cvar_t sv_filter = {"sv_filter","1"};
#ifdef UQUAKE
client_t *host_client; // current client
#endif
void Host_InitLocal (void); void Host_InitLocal (void);
void Host_FindMaxClients (void); void Host_FindMaxClients (void);

View file

@ -85,7 +85,7 @@ cvar_t config_modem_clear = {"_config_modem_clear", "ATZ", true};
cvar_t config_modem_init = {"_config_modem_init", "", true}; cvar_t config_modem_init = {"_config_modem_init", "", true};
cvar_t config_modem_hangup = {"_config_modem_hangup", "AT H", true}; cvar_t config_modem_hangup = {"_config_modem_hangup", "AT H", true};
int vcrFile = -1; extern int vcrFile;
qboolean recording = false; qboolean recording = false;
// these two macros are to make the code more readable // these two macros are to make the code more readable