mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-13 07:47:45 +00:00
Blub\0's FTEQCC patch, to fix intrinsics: http://stud4.tuwien.ac.at/~e0725517/patches/fteqcc_fix_intrinsics.diff
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@3190 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
ff22785542
commit
4e21d2c88d
1 changed files with 17 additions and 7 deletions
|
@ -21,6 +21,16 @@
|
|||
#include "shader.h"
|
||||
#endif
|
||||
|
||||
#ifdef MINGW
|
||||
/* Moodles being evil, need these from server.h
|
||||
PMF_JUMP_HELD undeclared (first use in this function)
|
||||
PMF_LADDER undeclared (first use in this function)*/
|
||||
#define PMF_JUMP_HELD 1
|
||||
#define PMF_LADDER 2 //pmove flags. seperate from flags
|
||||
// and this from server "progs.h"
|
||||
#define EDICT_FROM_AREA(l) STRUCT_FROM_LINK(l,edict_t,area)
|
||||
#endif
|
||||
|
||||
//#define CHEAT_PARANOID
|
||||
|
||||
#include "pr_common.h"
|
||||
|
|
Loading…
Reference in a new issue