The usual errors and warnings.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2697 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Molgrum 2007-10-02 15:25:26 +00:00
parent a06055f971
commit 7ab0b2ea43
2 changed files with 5 additions and 1 deletions

View File

@ -1041,6 +1041,10 @@ void SV_UpdateToReliableMessages (void);
void SV_DarkPlacesDownloadChunk(client_t *cl, sizebuf_t *msg);
void SV_New_f (void);
void SV_PreRunCmd(void);
void SV_RunCmd (usercmd_t *ucmd, qboolean recurse);
void SV_PostRunCmd(void);
//sv_master.c
void SVM_Think(int port);

View File

@ -2013,8 +2013,8 @@ qboolean SV_Physics (void)
usercmd_t ucmd;
static int old_bot_time; //I hate using floats for timers.
host_frametime = (Sys_Milliseconds() - old_bot_time) / 1000.0f;
client_t *oldhost;
host_frametime = (Sys_Milliseconds() - old_bot_time) / 1000.0f;
if (1 || host_frametime >= 1 / 72.0f)
{
memset(&ucmd, 0, sizeof(ucmd));