]> de.git.xonotic.org Git - xonotic/darkplaces.git/blobdiff - progs.h
rewrite of map texture loading (mainly to do with HL textures and wads)
[xonotic/darkplaces.git] / progs.h
diff --git a/progs.h b/progs.h
index d38eb92578b4f127cd0b98545c1dff8d55f7eb6e..278447b2e6e1c0ebd6ccc6d3bffdd3a9412f3e9e 100644 (file)
--- a/progs.h
+++ b/progs.h
@@ -31,8 +31,8 @@ typedef union eval_s
        int                             edict;
 } eval_t;      
 
-// LordHavoc: increased number of leafs per entity limit from 16 to 64
-#define        MAX_ENT_LEAFS   64
+// LordHavoc: increased number of leafs per entity limit from 16 to 256
+#define        MAX_ENT_LEAFS   256
 typedef struct edict_s
 {
        qboolean        free;
@@ -110,7 +110,7 @@ extern      int                             pr_edictareasize; // LordHavoc: for bounds checking
 
 void PR_Init (void);
 
-void PR_ExecuteProgram (func_t fnum);
+void PR_ExecuteProgram (func_t fnum, char *errormessage);
 void PR_LoadProgs (void);
 
 void PR_Profile_f (void);