From 300987aa0ec8ec7843aa523ddec5d84788b47f2a Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Sun, 13 Apr 2014 09:03:48 +0000 Subject: [PATCH] progs.h: leafnums array in edict_t needs to be int, not short. patch from Eric Wasylishen. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@899 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/progs.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Quake/progs.h b/Quake/progs.h index 0f6cd7ac..12dc17cf 100644 --- a/Quake/progs.h +++ b/Quake/progs.h @@ -42,7 +42,7 @@ typedef struct edict_s link_t area; /* linked to a division node or leaf */ int num_leafs; - short leafnums[MAX_ENT_LEAFS]; + int leafnums[MAX_ENT_LEAFS]; entity_state_t baseline; unsigned char alpha; /* johnfitz -- hack to support alpha since it's not part of entvars_t */