mirror of
https://git.code.sf.net/p/quake/newtree
synced 2024-11-10 14:52:08 +00:00
*ver MUST be numerical - clients to ATOI with it.
This commit is contained in:
parent
8e678728b0
commit
31b8be8648
1 changed files with 2 additions and 2 deletions
|
@ -90,7 +90,6 @@ cvar_t msg = {"msg","1", true, true};
|
||||||
|
|
||||||
extern cvar_t cl_hightrack;
|
extern cvar_t cl_hightrack;
|
||||||
|
|
||||||
|
|
||||||
client_static_t cls;
|
client_static_t cls;
|
||||||
client_state_t cl;
|
client_state_t cl;
|
||||||
|
|
||||||
|
@ -1074,7 +1073,8 @@ void CL_Init (void)
|
||||||
Info_SetValueForKey (cls.userinfo, "bottomcolor", "0", MAX_INFO_STRING);
|
Info_SetValueForKey (cls.userinfo, "bottomcolor", "0", MAX_INFO_STRING);
|
||||||
Info_SetValueForKey (cls.userinfo, "rate", "2500", MAX_INFO_STRING);
|
Info_SetValueForKey (cls.userinfo, "rate", "2500", MAX_INFO_STRING);
|
||||||
Info_SetValueForKey (cls.userinfo, "msg", "1", MAX_INFO_STRING);
|
Info_SetValueForKey (cls.userinfo, "msg", "1", MAX_INFO_STRING);
|
||||||
sprintf (st, "%s-%04d", QW_VERSION, build_number());
|
// sprintf (st, "%s-%04d", QW_VERSION, build_number());
|
||||||
|
sprintf (st, "%s", QW_VERSION);
|
||||||
Info_SetValueForStarKey (cls.userinfo, "*ver", st, MAX_INFO_STRING);
|
Info_SetValueForStarKey (cls.userinfo, "*ver", st, MAX_INFO_STRING);
|
||||||
|
|
||||||
CL_InitInput ();
|
CL_InitInput ();
|
||||||
|
|
Loading…
Reference in a new issue