Merge pull request #748 from devnexen/sw_gl1_inleaf_sig_fix

sw/gl1 client Mod_PointInLeaf sig mismatch.
This commit is contained in:
Yamagi 2021-10-13 17:30:35 +02:00 committed by GitHub
commit 4b29329758
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -216,7 +216,7 @@ typedef struct model_s
void Mod_Init(void);
void Mod_ClearAll(void);
model_t *Mod_ForName(char *name, qboolean crash);
mleaf_t *Mod_PointInLeaf(float *p, model_t *model);
mleaf_t *Mod_PointInLeaf(vec3_t p, model_t *model);
byte *Mod_ClusterPVS(int cluster, model_t *model);
void Mod_Modellist_f(void);

View file

@ -222,7 +222,7 @@ typedef struct model_s
void Mod_Init(void);
mleaf_t *Mod_PointInLeaf(float *p, model_t *model);
mleaf_t *Mod_PointInLeaf(vec3_t p, model_t *model);
byte *Mod_ClusterPVS(int cluster, model_t *model);
void Mod_Modellist_f(void);