Changed Host_Frame(float time) to Host_Frame(double time). Again :)

This commit is contained in:
Anton E. Gavrilov 2000-04-12 11:10:34 +00:00
parent 1603855e58
commit fe1cb020ad
2 changed files with 3 additions and 3 deletions

View file

@ -109,7 +109,7 @@ void Host_Init (quakeparms_t *parms);
void Host_Shutdown(void);
void Host_Error (char *error, ...);
void Host_EndGame (char *message, ...);
void Host_Frame (float time);
void Host_Frame (double time);
void Host_Quit_f (void);
void Host_ClientCommands (char *fmt, ...);
void Host_ShutdownServer (qboolean crash);

View file

@ -238,7 +238,7 @@ int nopacketcount; // for Host_FrameMain
Run everything that happens on a per-frame basis
*/
void
Host_FrameMain ( float time )
Host_FrameMain ( double time )
{
static double time1 = 0;
static double time2 = 0;
@ -365,7 +365,7 @@ Host_FrameMain ( float time )
to be handled and write it to console.
*/
void
Host_Frame ( float time )
Host_Frame ( double time )
{
#ifdef QUAKEWORLD
Host_FrameMain (time);