diff options
author | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-04-21 17:04:21 +0000 |
---|---|---|
committer | thilo <thilo@edf5b092-35ff-0310-97b2-ce42778d08ea> | 2006-04-21 17:04:21 +0000 |
commit | 359864866cdaab7fad5ae6b734f4b011e0e75bb3 (patch) | |
tree | 741b147c5a3a00f3b96a154d85cbc931775b1bdb /code/botlib | |
parent | 594cac092924f5ecdf27bab448c28ea8686111db (diff) | |
download | ioquake3-aero-359864866cdaab7fad5ae6b734f4b011e0e75bb3.tar.gz ioquake3-aero-359864866cdaab7fad5ae6b734f4b011e0e75bb3.zip |
- botlib logfile now gets stored in the fs_game directory in fs_homepath. (patch from Erik Auerswald)
- Added proper error handling when fopening qconsole.log
- Fixed bug where r_chat.c gets loaded in botlib even when bot_nochat is 1.
git-svn-id: svn://svn.icculus.org/quake3/trunk@715 edf5b092-35ff-0310-97b2-ce42778d08ea
Diffstat (limited to 'code/botlib')
-rw-r--r-- | code/botlib/be_interface.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/code/botlib/be_interface.c b/code/botlib/be_interface.c index b6862af..067b257 100644 --- a/code/botlib/be_interface.c +++ b/code/botlib/be_interface.c @@ -137,12 +137,24 @@ int Export_BotLibSetup(void) { int errnum; char logfilename[MAX_QPATH]; + char *homedir, *gamedir; bot_developer = LibVarGetValue("bot_developer"); memset( &botlibglobals, 0, sizeof(botlibglobals) ); // bk001207 - init //initialize byte swapping (litte endian etc.) // Swap_Init(); - Com_sprintf(logfilename, sizeof(logfilename), "%s%cbotlib.log", LibVarGetString("homedir"), PATH_SEP); + homedir = LibVarGetString("homedir"); + gamedir = LibVarGetString("gamedir"); + if (homedir[0]) { + if (gamedir[0]) { + Com_sprintf(logfilename, sizeof(logfilename), "%s%c%s%cbotlib.log", homedir, PATH_SEP, gamedir, PATH_SEP); + } + else { + Com_sprintf(logfilename, sizeof(logfilename), "%s%cbaseq3%cbotlib.log", homedir, PATH_SEP, PATH_SEP); + } + } else { + Com_sprintf(logfilename, sizeof(logfilename), "botlib.log"); + } Log_Open(logfilename); // botimport.Print(PRT_MESSAGE, "------- BotLib Initialization -------\n"); |