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:
Bill Currie 2012-07-02 20:59:03 +09:00
parent 1a6b56b0a2
commit 1a1b406e5b

View file

@ -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;