diff options
author | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-11-02 23:36:23 +0000 |
---|---|---|
committer | tma <tma@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2007-11-02 23:36:23 +0000 |
commit | 56902c5a9b6b59341f71098566f2d84a4af4b572 (patch) | |
tree | 7c07b055412384790e939335a15c1fda78e05461 /code/botlib | |
parent | c4ac4295935c145c992fdfd27085c3f95559c3a0 (diff) | |
download | ioquake3-aero-56902c5a9b6b59341f71098566f2d84a4af4b572.tar.gz ioquake3-aero-56902c5a9b6b59341f71098566f2d84a4af4b572.zip |
* (bug 3393) Blank user names still possible (Michael Jard <kfaust@gmail.com>)
* (bug 3363) Download percentage overflow (Martin Doucha <next_ghost@quick.cz>)
* (bug 3390) MSVC project (Julian Priestley <juzley@gmail.com>)
* For OS X and MinGW ports, don't -I code/SDL when USE_LOCAL_HEADERS is 0
git-svn-id: svn://svn.icculus.org/quake3/trunk@1204 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/botlib')
-rw-r--r-- | code/botlib/be_interface.c | 2 | ||||
-rw-r--r-- | code/botlib/l_precomp.c | 4 |
2 files changed, 1 insertions, 5 deletions
diff --git a/code/botlib/be_interface.c b/code/botlib/be_interface.c index 9ef6756..5418635 100644 --- a/code/botlib/be_interface.c +++ b/code/botlib/be_interface.c @@ -136,7 +136,7 @@ qboolean BotLibSetup(char *str) int Export_BotLibSetup(void) { int errnum; - char logfilename[MAX_QPATH]; + char logfilename[MAX_OSPATH]; char *homedir, *gamedir; bot_developer = LibVarGetValue("bot_developer"); diff --git a/code/botlib/l_precomp.c b/code/botlib/l_precomp.c index 91b9a7b..8b5e4d3 100644 --- a/code/botlib/l_precomp.c +++ b/code/botlib/l_precomp.c @@ -705,11 +705,7 @@ int PC_ExpandBuiltinDefine(source_t *source, token_t *deftoken, define_t *define token_t **firsttoken, token_t **lasttoken) { token_t *token; -#ifdef _WIN32 - unsigned long t; // time_t t; //to prevent LCC warning -#else time_t t; -#endif char *curtime; |