Browse Source

common: fix NULL redefine(do we really need NULL definition?)

pull/2/head
Alibek Omarov 6 years ago
parent
commit
deb537c1bb
  1. 4
      engine/common/common.h

4
engine/common/common.h

@ -103,6 +103,10 @@ XASH SPECIFIC - sort of hack that works only in Xash3D not in GoldSrc @@ -103,6 +103,10 @@ XASH SPECIFIC - sort of hack that works only in Xash3D not in GoldSrc
#define FBitSet( iBitVector, bit ) ((iBitVector) & (bit))
#ifndef __cplusplus
#ifdef NULL
#undef NULL
#endif
#define NULL ((void *)0)
#endif

Loading…
Cancel
Save