mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2025-02-12 14:55:58 +00:00
There was a discrepancy in the definitions of MAX_MOD_KNOWN.
gl_model.c had it as 512, but qw_server/model.c and common/model.c had it as 256. That wasn't the real problem, what it was was hipnotic (obviously) has more than 256 models in "Research Facility", and so uquake-svga bobmed
This commit is contained in:
parent
e1af4d0107
commit
78cc81749d
2 changed files with 2 additions and 2 deletions
|
@ -45,7 +45,7 @@ model_t *Mod_LoadModel (model_t *mod, qboolean crash);
|
|||
|
||||
byte mod_novis[MAX_MAP_LEAFS/8];
|
||||
|
||||
#define MAX_MOD_KNOWN 256
|
||||
#define MAX_MOD_KNOWN 512
|
||||
model_t mod_known[MAX_MOD_KNOWN];
|
||||
int mod_numknown;
|
||||
|
||||
|
|
|
@ -46,7 +46,7 @@ model_t *Mod_LoadModel (model_t *mod, qboolean crash);
|
|||
|
||||
byte mod_novis[MAX_MAP_LEAFS/8];
|
||||
|
||||
#define MAX_MOD_KNOWN 256
|
||||
#define MAX_MOD_KNOWN 512
|
||||
model_t mod_known[MAX_MOD_KNOWN];
|
||||
int mod_numknown;
|
||||
|
||||
|
|
Loading…
Reference in a new issue