Fixes build on OS X, as host_t is already a typedef for mach_port_t.
*/
-host_t host;
+host_static_t host;
// pretend frames take this amount of time (in seconds), 0 = realtime
cvar_t host_framerate = {CF_CLIENT | CF_SERVER, "host_framerate","0", "locks frame timing to this value in seconds, 0.05 is 20fps for example, note that this can easily run too fast, use cl_maxfps if you want to limit your framerate instead, or sys_ticrate to limit server speed"};
else
Sys_Sleep((int)time);
delta = Sys_DirtyTime() - time0;
- if (delta < 0 || delta >= 1800)
+ if (delta < 0 || delta >= 1800)
delta = 0;
host.sleeptime += delta;
// R_TimeReport("sleep");
host_active
} host_state_t;
-typedef struct host_s
+typedef struct host_static_s
{
jmp_buf abortframe;
int state;
void (*SV_SendCvar)(struct cmd_state_s *);
void (*SV_Shutdown)(void);
} hook;
-} host_t;
+} host_static_t;
-extern host_t host;
+extern host_static_t host;
void Host_Main(void);
void Host_Shutdown(void);