mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-21 19:32:30 +00:00
Changed Host_Frame(float time) to Host_Frame(double time). Again :)
This commit is contained in:
parent
1603855e58
commit
fe1cb020ad
2 changed files with 3 additions and 3 deletions
|
@ -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);
|
||||
|
|
|
@ -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);
|
||||
|
|
Loading…
Reference in a new issue