- "baseq3" literal replacement patch (by Erik Auerswald) applied

- Commented setting of the cl_guid cvar because md5.c is not 64-bit safe.
This commit is contained in:
Thilo Schulz 2006-04-26 13:36:58 +00:00
parent dbdc92d4be
commit c116695ea7
6 changed files with 7 additions and 6 deletions

View file

@ -2549,7 +2549,8 @@ void CL_Init( void ) {
Cvar_Set( "cl_running", "1" );
CL_GenerateQKey();
Cvar_Get("cl_guid", Com_MD5File(QKEY_FILE, 0), CVAR_USERINFO | CVAR_ROM);
// Uncomment this once md5.c has been made 64 bit-safe.
// Cvar_Get("cl_guid", Com_MD5File(QKEY_FILE, 0), CVAR_USERINFO | CVAR_ROM);
Com_Printf( "----- Client Initialization Complete -----\n" );
}