mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-10 06:31:52 +00:00
Remove quakec implementation of bit shifts.
This commit is contained in:
parent
f5e0d75736
commit
17cd47173a
2 changed files with 1 additions and 5 deletions
|
@ -9,7 +9,7 @@ CPP=cpp
|
||||||
CPPFLAGS=-I. -Iweapons -Imdl -Iact -Imapents
|
CPPFLAGS=-I. -Iweapons -Imdl -Iact -Imapents
|
||||||
|
|
||||||
QFCC=qfcc
|
QFCC=qfcc
|
||||||
QFCCFLAGS=-q -g --warn all,error $(CPPFLAGS)
|
QFCCFLAGS=-qg -Wall -Werror $(CPPFLAGS)
|
||||||
|
|
||||||
###############################################
|
###############################################
|
||||||
|
|
||||||
|
@ -37,7 +37,6 @@ COMMON_SOURCES=system.qc \
|
||||||
equipid.qc \
|
equipid.qc \
|
||||||
server.qc worldspawn.qc \
|
server.qc worldspawn.qc \
|
||||||
client.qc spectate.qc \
|
client.qc spectate.qc \
|
||||||
math.qc \
|
|
||||||
misc.qc \
|
misc.qc \
|
||||||
teleport.qc delays.qc \
|
teleport.qc delays.qc \
|
||||||
bodyque.qc damage.qc \
|
bodyque.qc damage.qc \
|
||||||
|
|
|
@ -2,9 +2,6 @@
|
||||||
#define MATH_qh 1
|
#define MATH_qh 1
|
||||||
|
|
||||||
@extern {
|
@extern {
|
||||||
float (float num, float bits) shl;
|
|
||||||
float (float num, float bits) shr;
|
|
||||||
|
|
||||||
#define min(a, b) ((a)>(b)?(b):(a))
|
#define min(a, b) ((a)>(b)?(b):(a))
|
||||||
#define max(a, b) ((a)>(b)?(a):(b))
|
#define max(a, b) ((a)>(b)?(a):(b))
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue