From d457edbccd4f0f2c0575264635af64eb1b7a926b Mon Sep 17 00:00:00 2001 From: "Anton E. Gavrilov" Date: Sun, 19 Mar 2000 13:05:12 +0000 Subject: [PATCH] Changed SV_Frame(float) to SV_Frame(double). No more problems on Win32. --- common/server.h | 2 +- qw_server/sv_main.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/common/server.h b/common/server.h index e1e2eec..afb1948 100644 --- a/common/server.h +++ b/common/server.h @@ -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 diff --git a/qw_server/sv_main.c b/qw_server/sv_main.c index 087cd02..05eee48 100644 --- a/qw_server/sv_main.c +++ b/qw_server/sv_main.c @@ -1290,7 +1290,7 @@ SV_Frame ================== */ -void SV_Frame (float time) +void SV_Frame (double time) { static double start, end;