cvar type/range fixes

This commit is contained in:
myT 2017-12-28 07:11:58 +01:00
parent eb7511f4df
commit f084ddb218
2 changed files with 2 additions and 2 deletions

View File

@ -2178,7 +2178,7 @@ static const cvarTableItem_t com_cvars[] =
{ &com_developer, "developer", "0", CVAR_TEMP, CVART_BOOL, NULL, NULL, "enables detailed logging" }, { &com_developer, "developer", "0", CVAR_TEMP, CVART_BOOL, NULL, NULL, "enables detailed logging" },
{ &com_logfile, "logfile", "0", CVAR_TEMP, CVART_INTEGER, "0", "2", help_com_logfile }, { &com_logfile, "logfile", "0", CVAR_TEMP, CVART_INTEGER, "0", "2", help_com_logfile },
{ &com_timescale, "timescale", "1", CVAR_CHEAT | CVAR_SYSTEMINFO, CVART_FLOAT, "0", "100", "game time to real time ratio" }, { &com_timescale, "timescale", "1", CVAR_CHEAT | CVAR_SYSTEMINFO, CVART_FLOAT, "0", "100", "game time to real time ratio" },
{ &com_fixedtime, "fixedtime", "0", CVAR_CHEAT, CVART_INTEGER, "1", "64", "fixed number of ms per simulation tick" }, { &com_fixedtime, "fixedtime", "0", CVAR_CHEAT, CVART_INTEGER, "0", "64", "fixed number of ms per simulation tick, " S_COLOR_VAL "0" S_COLOR_HELP "=off" },
{ &com_showtrace, "com_showtrace", "0", CVAR_CHEAT, CVART_BOOL, NULL, NULL, "prints trace optimization info" }, { &com_showtrace, "com_showtrace", "0", CVAR_CHEAT, CVART_BOOL, NULL, NULL, "prints trace optimization info" },
{ &com_viewlog, "viewlog", "0", CVAR_CHEAT, CVART_INTEGER, "0", "2", help_com_viewlog }, { &com_viewlog, "viewlog", "0", CVAR_CHEAT, CVART_INTEGER, "0", "2", help_com_viewlog },
{ &com_speeds, "com_speeds", "0", 0, CVART_BOOL, NULL, NULL, "prints timing info" }, { &com_speeds, "com_speeds", "0", 0, CVART_BOOL, NULL, NULL, "prints timing info" },

View File

@ -776,8 +776,8 @@ static void NET_GetLocalAddress()
static void NET_OpenIP() static void NET_OpenIP()
{ {
const cvar_t* ip = Cvar_Get( "net_ip", "localhost", CVAR_LATCH ); const cvar_t* ip = Cvar_Get( "net_ip", "localhost", CVAR_LATCH );
Cvar_SetRange( "net_ip", CVART_INTEGER, "0", "65535" );
int port = Cvar_Get( "net_port", va( "%i", PORT_SERVER ), CVAR_LATCH )->integer; int port = Cvar_Get( "net_port", va( "%i", PORT_SERVER ), CVAR_LATCH )->integer;
Cvar_SetRange( "net_port", CVART_INTEGER, "0", "65535" );
// automatically scan for a valid port, so multiple // automatically scan for a valid port, so multiple
// dedicated servers can be started without requiring // dedicated servers can be started without requiring