X-Git-Url: http://de.git.xonotic.org/?p=xonotic%2Fdarkplaces.git;a=blobdiff_plain;f=client.h;h=889f8e739f93651707c6f293cd76a5c0097f8410;hp=6d032f342599cd9e2da1939ba8aea7563997b77f;hb=dd3e7334d7c42bb4c8191fecbedb44525414ddb4;hpb=a1072a5ac30e4d2827b79c4a3469992e45ad389f diff --git a/client.h b/client.h index 6d032f34..889f8e73 100644 --- a/client.h +++ b/client.h @@ -523,6 +523,8 @@ typedef struct client_static_s // demo recording info must be here, because record is started before // entering a map (and clearing client_state_t) qboolean demorecording; + fs_offset_t demo_lastcsprogssize; + int demo_lastcsprogscrc; qboolean demoplayback; qboolean timedemo; // -1 = use normal cd track @@ -689,6 +691,7 @@ typedef struct particle_s float alpha; // 0-255 unsigned char color[3]; unsigned char qualityreduction; // enables skipping of this particle according to r_refdef.view.qualityreduction + float stretch; // only for sparks // fields not used by rendering: (40 bytes) float sizeincrease; // rate of size change per second @@ -1214,8 +1217,8 @@ void CL_StopPlayback(void); void CL_ReadDemoMessage(void); void CL_WriteDemoMessage(sizebuf_t *mesage); -void CL_CutDemo(void **buf, fs_offset_t *filesize); -void CL_PasteDemo(void **buf, fs_offset_t *filesize); +void CL_CutDemo(unsigned char **buf, fs_offset_t *filesize); +void CL_PasteDemo(unsigned char **buf, fs_offset_t *filesize); void CL_NextDemo(void); void CL_Stop_f(void);