mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-03-25 03:31:25 +00:00
Fix timedemo in qw.
td_lastframe needs to be a float in qw. It seems the meaning changed from nq to qw, but that's rather bogus. I need to look further into juat what's going on, but at least now timedemo works.
This commit is contained in:
parent
1a6b56b0a2
commit
1a1b406e5b
1 changed files with 1 additions and 1 deletions
|
@ -163,7 +163,7 @@ typedef struct {
|
|||
int prevtime;
|
||||
double basetime;
|
||||
qboolean timedemo;
|
||||
int td_lastframe; // to meter out one message a frame
|
||||
float td_lastframe; // to meter out one message a frame
|
||||
int td_startframe; // host_framecount at start
|
||||
float td_starttime; // realtime at second frame of timedemo
|
||||
} client_static_t;
|
||||
|
|
Loading…
Reference in a new issue