From d37536edf4660f3c46e4876b6d72e9a200549ffe Mon Sep 17 00:00:00 2001 From: tma Date: Wed, 5 Sep 2007 18:17:46 +0000 Subject: * Merge unified-sdl to trunk * Bump Q3_VERSION to 1.35 git-svn-id: svn://svn.icculus.org/quake3/trunk@1161 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/client/client.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'code/client/client.h') diff --git a/code/client/client.h b/code/client/client.h index c576dca..a2e682e 100644 --- a/code/client/client.h +++ b/code/client/client.h @@ -153,6 +153,7 @@ demo through a file. ============================================================================= */ +#define MAX_TIMEDEMO_DURATIONS 4096 typedef struct { @@ -219,6 +220,10 @@ typedef struct { int timeDemoFrames; // counter of rendered frames int timeDemoStart; // cls.realtime before first frame int timeDemoBaseTime; // each frame will be at this time + frameNum * 50 + int timeDemoLastFrame;// time the last frame was rendered + int timeDemoMinDuration; // minimum frame duration + int timeDemoMaxDuration; // maximum frame duration + unsigned char timeDemoDurations[ MAX_TIMEDEMO_DURATIONS ]; // log of frame durations // big stuff at end of structure so most offsets are 15 bits or less netchan_t netchan; @@ -384,7 +389,7 @@ void CL_FlushMemory(void); void CL_ShutdownAll(void); void CL_AddReliableCommand( const char *cmd ); -void CL_StartHunkUsers( void ); +void CL_StartHunkUsers( qboolean rendererOnly ); void CL_Disconnect_f (void); void CL_GetChallengePacket (void); -- cgit v1.2.3