mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-01-20 08:21:08 +00:00
Merge pull request #748 from devnexen/sw_gl1_inleaf_sig_fix
sw/gl1 client Mod_PointInLeaf sig mismatch.
This commit is contained in:
commit
4b29329758
2 changed files with 2 additions and 2 deletions
|
@ -216,7 +216,7 @@ typedef struct model_s
|
||||||
void Mod_Init(void);
|
void Mod_Init(void);
|
||||||
void Mod_ClearAll(void);
|
void Mod_ClearAll(void);
|
||||||
model_t *Mod_ForName(char *name, qboolean crash);
|
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);
|
byte *Mod_ClusterPVS(int cluster, model_t *model);
|
||||||
|
|
||||||
void Mod_Modellist_f(void);
|
void Mod_Modellist_f(void);
|
||||||
|
|
|
@ -222,7 +222,7 @@ typedef struct model_s
|
||||||
|
|
||||||
void Mod_Init(void);
|
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);
|
byte *Mod_ClusterPVS(int cluster, model_t *model);
|
||||||
|
|
||||||
void Mod_Modellist_f(void);
|
void Mod_Modellist_f(void);
|
||||||
|
|
Loading…
Reference in a new issue