A few minor fixes
FossilOrigin-Name: 4391eeb53583c55fc48bc91289308057d936c6e52807e1f080c70a0c6c064079
This commit is contained in:
parent
f84e7f7c72
commit
ea315c4a21
3 changed files with 35 additions and 33 deletions
64
src/Makefile
64
src/Makefile
|
@ -1,37 +1,37 @@
|
|||
PROG = client
|
||||
|
||||
SRCS = client.o \
|
||||
clientextras.o \
|
||||
clientgame.o \
|
||||
clients2c.o \
|
||||
command.o \
|
||||
console.o \
|
||||
editing.o \
|
||||
entities.o \
|
||||
main.o \
|
||||
menus.o \
|
||||
monster.o \
|
||||
physics.o \
|
||||
rendercubes.o \
|
||||
renderextras.o \
|
||||
rendergl.o \
|
||||
rendermd2.o \
|
||||
renderparticles.o \
|
||||
rendertext.o \
|
||||
rndmap.o \
|
||||
savegamedemo.o \
|
||||
server.o \
|
||||
serverbrowser.o \
|
||||
serverms.o \
|
||||
serverutil.o \
|
||||
sound.o \
|
||||
tools.o \
|
||||
weapon.o \
|
||||
world.o \
|
||||
worldio.o \
|
||||
worldlight.o \
|
||||
worldocull.o \
|
||||
worldrender.o
|
||||
SRCS = client.cxx \
|
||||
clientextras.cxx \
|
||||
clientgame.cxx \
|
||||
clients2c.cxx \
|
||||
command.cxx \
|
||||
console.cxx \
|
||||
editing.cxx \
|
||||
entities.cxx \
|
||||
main.cxx \
|
||||
menus.cxx \
|
||||
monster.cxx \
|
||||
physics.cxx \
|
||||
rendercubes.cxx \
|
||||
renderextras.cxx \
|
||||
rendergl.cxx \
|
||||
rendermd2.cxx \
|
||||
renderparticles.cxx \
|
||||
rendertext.cxx \
|
||||
rndmap.cxx \
|
||||
savegamedemo.cxx \
|
||||
server.cxx \
|
||||
serverbrowser.cxx \
|
||||
serverms.cxx \
|
||||
serverutil.cxx \
|
||||
sound.cxx \
|
||||
tools.cxx \
|
||||
weapon.cxx \
|
||||
world.cxx \
|
||||
worldio.cxx \
|
||||
worldlight.cxx \
|
||||
worldocull.cxx \
|
||||
worldrender.cxx
|
||||
|
||||
include ../buildsys.mk
|
||||
include ../extra.mk
|
||||
|
|
|
@ -187,6 +187,8 @@ struct pool {
|
|||
void allocnext(size_t allocsize);
|
||||
};
|
||||
|
||||
pool *gp();
|
||||
|
||||
template <class T> struct vector {
|
||||
T *buf;
|
||||
int alen;
|
||||
|
@ -376,7 +378,6 @@ template <class T> struct hashtable {
|
|||
b; \
|
||||
}
|
||||
|
||||
pool *gp();
|
||||
inline char *
|
||||
newstring(char *s)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue