[quake3-commits] r1680 - trunk/code/botlib
DONOTREPLY at icculus.org
DONOTREPLY at icculus.org
Sat Oct 17 20:28:38 EDT 2009
Author: thilo
Date: 2009-10-17 20:28:38 -0400 (Sat, 17 Oct 2009)
New Revision: 1680
Modified:
trunk/code/botlib/be_aas_cluster.c
trunk/code/botlib/be_ea.c
trunk/code/botlib/l_crc.c
trunk/code/botlib/l_log.c
trunk/code/botlib/l_memory.c
Log:
Adding missing header includes to botlib files. Thanks to Ben Millwood for patch. (#4237)
Modified: trunk/code/botlib/be_aas_cluster.c
===================================================================
--- trunk/code/botlib/be_aas_cluster.c 2009-10-18 00:02:24 UTC (rev 1679)
+++ trunk/code/botlib/be_aas_cluster.c 2009-10-18 00:28:38 UTC (rev 1680)
@@ -42,6 +42,7 @@
#include "be_aas.h"
#include "be_aas_funcs.h"
#include "be_aas_def.h"
+#include "be_aas_cluster.h"
extern botlib_import_t botimport;
Modified: trunk/code/botlib/be_ea.c
===================================================================
--- trunk/code/botlib/be_ea.c 2009-10-18 00:02:24 UTC (rev 1679)
+++ trunk/code/botlib/be_ea.c 2009-10-18 00:28:38 UTC (rev 1680)
@@ -36,6 +36,7 @@
#include "l_struct.h"
#include "botlib.h"
#include "be_interface.h"
+#include "be_ea.h"
#define MAX_USERMOVE 400
#define MAX_COMMANDARGUMENTS 10
Modified: trunk/code/botlib/l_crc.c
===================================================================
--- trunk/code/botlib/l_crc.c 2009-10-18 00:02:24 UTC (rev 1679)
+++ trunk/code/botlib/l_crc.c 2009-10-18 00:28:38 UTC (rev 1680)
@@ -36,6 +36,7 @@
#include "../qcommon/q_shared.h"
#include "botlib.h"
#include "be_interface.h" //for botimport.Print
+#include "l_crc.h"
// FIXME: byte swap?
Modified: trunk/code/botlib/l_log.c
===================================================================
--- trunk/code/botlib/l_log.c 2009-10-18 00:02:24 UTC (rev 1679)
+++ trunk/code/botlib/l_log.c 2009-10-18 00:28:38 UTC (rev 1680)
@@ -37,6 +37,7 @@
#include "botlib.h"
#include "be_interface.h" //for botimport.Print
#include "l_libvar.h"
+#include "l_log.h"
#define MAX_LOGFILENAMESIZE 1024
Modified: trunk/code/botlib/l_memory.c
===================================================================
--- trunk/code/botlib/l_memory.c 2009-10-18 00:02:24 UTC (rev 1679)
+++ trunk/code/botlib/l_memory.c 2009-10-18 00:28:38 UTC (rev 1680)
@@ -32,6 +32,7 @@
#include "../qcommon/q_shared.h"
#include "botlib.h"
#include "l_log.h"
+#include "l_memory.h"
#include "be_interface.h"
//#define MEMDEBUG
More information about the quake3-commits
mailing list