mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 12:10:48 +00:00
minor house-keeping
This commit is contained in:
parent
7782f01422
commit
cb6bf2e2ae
2 changed files with 1 additions and 13 deletions
|
@ -81,9 +81,6 @@ void ED_ClearEdict (progs_t * pr, edict_t *e, int val);
|
|||
edict_t *ED_Alloc (progs_t *pr);
|
||||
void ED_Free (progs_t *pr, edict_t *ed);
|
||||
|
||||
char *ED_NewString (progs_t *pr, const char *string);
|
||||
// returns a copy of the string allocated from the server's string heap
|
||||
|
||||
void ED_Print (progs_t *pr, edict_t *ed);
|
||||
void ED_Write (progs_t *pr, QFile *f, edict_t *ed);
|
||||
const char *ED_ParseEdict (progs_t *pr, const char *data, edict_t *ent);
|
||||
|
|
|
@ -158,9 +158,6 @@ ED_Write (progs_t *pr, QFile *f, edict_t *ed)
|
|||
FIXME: need to tag constants, doesn't really work
|
||||
*/
|
||||
|
||||
/*
|
||||
ED_WriteGlobals
|
||||
*/
|
||||
void
|
||||
ED_WriteGlobals (progs_t *pr, QFile *f)
|
||||
{
|
||||
|
@ -189,10 +186,7 @@ ED_WriteGlobals (progs_t *pr, QFile *f)
|
|||
}
|
||||
|
||||
|
||||
/*
|
||||
ED_NewString
|
||||
*/
|
||||
char *
|
||||
static char *
|
||||
ED_NewString (progs_t *pr, const char *string)
|
||||
{
|
||||
char *new, *new_p;
|
||||
|
@ -378,9 +372,6 @@ ED_ParseEdict (progs_t *pr, const char *data, edict_t *ent)
|
|||
return data;
|
||||
}
|
||||
|
||||
/*
|
||||
ED_ParseGlobals
|
||||
*/
|
||||
void
|
||||
ED_ParseGlobals (progs_t *pr, const char *data)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue