err, forgot to save those.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/branches/wip@3683 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
ca9028ef76
commit
609dbda629
4 changed files with 12 additions and 1 deletions
|
@ -1141,7 +1141,7 @@ void *CL_IndepPhysicsThread(void *param)
|
|||
while(runningindepphys)
|
||||
{
|
||||
time = Sys_DoubleTime();
|
||||
spare = CL_FilterTime((time - lasttime)*1000, cl_netfps.value);
|
||||
spare = CL_FilterTime((time - lasttime)*1000, cl_netfps.value, false);
|
||||
if (spare)
|
||||
{
|
||||
//don't let them bank too much and get sudden bursts
|
||||
|
|
|
@ -67,6 +67,9 @@ void Sys_CloseTerminal (void)
|
|||
{
|
||||
}
|
||||
|
||||
void Sys_RecentServer(char *command, char *target, char *title, char *desc)
|
||||
{
|
||||
}
|
||||
|
||||
#ifndef CLIENTONLY
|
||||
qboolean isDedicated;
|
||||
|
|
|
@ -43,6 +43,10 @@ extern struct Library *VorbisFileBase;
|
|||
qboolean isDedicated;
|
||||
#endif
|
||||
|
||||
void Sys_RecentServer(char *command, char *target, char *title, char *desc)
|
||||
{
|
||||
}
|
||||
|
||||
static void Sys_Shutdown()
|
||||
{
|
||||
#if I_AM_BIGFOOT
|
||||
|
|
|
@ -39,6 +39,10 @@ void Sys_Error (const char *error, ...)
|
|||
exit (1);
|
||||
}
|
||||
|
||||
void Sys_RecentServer(char *command, char *target, char *title, char *desc)
|
||||
{
|
||||
}
|
||||
|
||||
//print into stdout
|
||||
void Sys_Printf (char *fmt, ...)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue