diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-04-27 13:39:41 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-04-27 13:39:41 +0000 |
commit | 55a5e9a51345fadf72f9cd2fb955a713bf27ea2f (patch) | |
tree | c9973cc5b00f41b12e3d6e313c4dffd3025daf32 /code/client | |
parent | 4b70806fcb6735314cf79557ce84379fa7542cad (diff) | |
download | ioquake3-aero-55a5e9a51345fadf72f9cd2fb955a713bf27ea2f.tar.gz ioquake3-aero-55a5e9a51345fadf72f9cd2fb955a713bf27ea2f.zip |
- Introduced various new typedefs for windows platform (int32_t, int64_t, etc...)
- Applied md5 64-bit safety patch by Tony White.
git-svn-id: svn://svn.icculus.org/quake3/trunk@727 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/client')
-rw-r--r-- | code/client/cl_main.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/code/client/cl_main.c b/code/client/cl_main.c index b502781..8f9cbae 100644 --- a/code/client/cl_main.c +++ b/code/client/cl_main.c @@ -2549,8 +2549,7 @@ void CL_Init( void ) { Cvar_Set( "cl_running", "1" ); CL_GenerateQKey(); -// Uncomment this once md5.c has been made 64 bit-safe. -// Cvar_Get("cl_guid", Com_MD5File(QKEY_FILE, 0), CVAR_USERINFO | CVAR_ROM); + Cvar_Get("cl_guid", Com_MD5File(QKEY_FILE, 0), CVAR_USERINFO | CVAR_ROM); Com_Printf( "----- Client Initialization Complete -----\n" ); } |