aboutsummaryrefslogtreecommitdiffstats
path: root/code/botlib
diff options
context:
space:
mode:
Diffstat (limited to 'code/botlib')
-rw-r--r--code/botlib/be_interface.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/code/botlib/be_interface.c b/code/botlib/be_interface.c
index d058573..b6862af 100644
--- a/code/botlib/be_interface.c
+++ b/code/botlib/be_interface.c
@@ -136,12 +136,14 @@ qboolean BotLibSetup(char *str)
int Export_BotLibSetup(void)
{
int errnum;
+ char logfilename[MAX_QPATH];
bot_developer = LibVarGetValue("bot_developer");
memset( &botlibglobals, 0, sizeof(botlibglobals) ); // bk001207 - init
//initialize byte swapping (litte endian etc.)
// Swap_Init();
- Log_Open("botlib.log");
+ Com_sprintf(logfilename, sizeof(logfilename), "%s%cbotlib.log", LibVarGetString("homedir"), PATH_SEP);
+ Log_Open(logfilename);
//
botimport.Print(PRT_MESSAGE, "------- BotLib Initialization -------\n");
//