From 1a1b406e5b6a544622d127cf20ea5a3f32c7ae5a Mon Sep 17 00:00:00 2001
From: Bill Currie <bill@taniwha.org>
Date: Mon, 2 Jul 2012 20:59:03 +0900
Subject: [PATCH] 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.
---
 qw/include/client.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/qw/include/client.h b/qw/include/client.h
index adff85d9a..34324a647 100644
--- a/qw/include/client.h
+++ b/qw/include/client.h
@@ -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;