mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2025-02-02 22:11:22 +00:00
Fix a macro that creates a syntax error on MSVC
This commit is contained in:
parent
069319ca99
commit
fa5c83b079
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ int SV_TruePointContents (vec3_t p);
|
|||
|
||||
edict_t *SV_TestEntityPosition (edict_t *ent);
|
||||
|
||||
#define CONTENTMASK_FROMQ1(c) (1u<<(-c))
|
||||
#define CONTENTMASK_FROMQ1(c) (1u<<(-(c)))
|
||||
#define CONTENTMASK_ANYSOLID (CONTENTMASK_FROMQ1(CONTENTS_SOLID) | CONTENTMASK_FROMQ1(CONTENTS_CLIP))
|
||||
trace_t SV_ClipMoveToEntity (edict_t *ent, vec3_t start, vec3_t mins, vec3_t maxs, vec3_t end, unsigned int hitcontents);
|
||||
trace_t SV_Move (vec3_t start, vec3_t mins, vec3_t maxs, vec3_t end, int type, edict_t *passedict);
|
||||
|
|
Loading…
Reference in a new issue