From: havoc Date: Mon, 9 May 2011 13:35:20 +0000 (+0000) Subject: add the prvm_badvalue variable needed by the last commit X-Git-Tag: xonotic-v0.6.0~163^2~405 X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=commitdiff_plain;h=547992e433dfac23e1d5e6ff91f4e44335164e70 add the prvm_badvalue variable needed by the last commit git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@11141 d7cf8633-e32d-0410-b094-e92efae38249 --- diff --git a/prvm_edict.c b/prvm_edict.c index 0a52aef9..ed7701d4 100644 --- a/prvm_edict.c +++ b/prvm_edict.c @@ -29,6 +29,8 @@ static prvm_prog_t prog_list[PRVM_MAXPROGS]; int prvm_type_size[8] = {1,sizeof(string_t)/4,1,3,1,1,sizeof(func_t)/4,sizeof(void *)/4}; +prvm_eval_t prvm_badvalue; // used only for error returns + ddef_t *PRVM_ED_FieldAtOfs(int ofs); qboolean PRVM_ED_ParseEpair(prvm_edict_t *ent, ddef_t *key, const char *s, qboolean parsebackslash);