mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2024-11-22 20:51:31 +00:00
Game cleanup.
This commit is contained in:
parent
eb8a2d792f
commit
1c0934f462
4 changed files with 8 additions and 4 deletions
|
@ -286,7 +286,7 @@ char *Sys_FindFirst(char *path, unsigned musthave, unsigned canthave);
|
|||
char *Sys_FindNext(unsigned musthave, unsigned canthave);
|
||||
void Sys_FindClose(void);
|
||||
|
||||
/* this is only here so the functions in q_shared.c and q_shwin.c can link */
|
||||
/* this is only here so the functions in shared source files can link */
|
||||
void Sys_Error(char *error, ...);
|
||||
void Com_Printf(char *msg, ...);
|
||||
|
||||
|
|
|
@ -145,6 +145,10 @@ GetGameAPI(game_import_t *import)
|
|||
return &globals;
|
||||
}
|
||||
|
||||
/*
|
||||
* this is only here so the functions
|
||||
* in shared source files can link
|
||||
*/
|
||||
void
|
||||
Sys_Error(char *error, ...)
|
||||
{
|
||||
|
|
|
@ -2194,7 +2194,7 @@ PrintPmove(pmove_t *pm)
|
|||
|
||||
c1 = CheckBlock(&pm->s, sizeof(pm->s));
|
||||
c2 = CheckBlock(&pm->cmd, sizeof(pm->cmd));
|
||||
Com_Printf("sv %3i:%i %i\n", pm->cmd.impulse, c1, c2);
|
||||
gi.dprintf("sv %3i:%i %i\n", pm->cmd.impulse, c1, c2);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
@ -1615,8 +1615,8 @@ R_GetRefAPI(refimport_t rimp)
|
|||
}
|
||||
|
||||
/*
|
||||
* this is only here so the functions in
|
||||
* shared.c, mem.c and hunk.c can link
|
||||
* this is only here so the functions
|
||||
* in shared source files can link
|
||||
*/
|
||||
void
|
||||
Sys_Error(char *error, ...)
|
||||
|
|
Loading…
Reference in a new issue