cl_demospeed cvar. 1 = normal speed, < 1 = slow-mo, > 1 = timelaps.

host.h:
	remove Host_SimulationTime prototype
cl_main.c:
	cl_demospeed stuff. Host_SimulationTime was resurected because of gcc
	warnings about setjmp clobbering vars. It's made static inline so its
	resurection doesn't cost fps.
This commit is contained in:
Bill Currie 2001-02-07 20:15:33 +00:00
parent c2194db299
commit 3320cf5e2c
2 changed files with 13 additions and 17 deletions

View file

@ -64,7 +64,6 @@ void Host_Init (void);
void Host_Shutdown(void);
void Host_Error (char *error, ...) __attribute__((format(printf,1,2)));
void Host_EndGame (char *message, ...) __attribute__((format(printf,1,2)));
qboolean Host_SimulationTime(float time);
void Host_Frame (float time);
void Host_Quit_f (void);
void Host_ClientCommands (char *fmt, ...) __attribute__((format(printf,1,2)));