Changed SV_Frame(float) to SV_Frame(double). No more problems on Win32.

This commit is contained in:
Anton E. Gavrilov 2000-03-19 13:05:12 +00:00
parent 73db1a359e
commit d457edbccd
2 changed files with 2 additions and 2 deletions

View file

@ -453,7 +453,7 @@ void SV_DropClient (client_t *drop);
void SV_WriteClientdataToMessage (client_t *client, sizebuf_t *msg);
void SV_ClientPrintf (client_t *cl, int level, char *fmt, ...);
void SV_BroadcastPrintf (int level, char *fmt, ...);
void SV_Frame (float time);
void SV_Frame (double time);
void SV_Physics_Client (edict_t *ent);
void SV_WriteEntitiesToClient (client_t *client, sizebuf_t *msg);
#else

View file

@ -1290,7 +1290,7 @@ SV_Frame
==================
*/
void SV_Frame (float time)
void SV_Frame (double time)
{
static double start, end;