mostly miscilaneous changes (some old stuff that I don't remember), lightsampling changes, qtv changes, avi sound changes
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2379 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
4c32449d26
commit
42c43d960f
60 changed files with 2066 additions and 643 deletions
|
@ -1914,7 +1914,7 @@ void SV_SendClientMessages (void)
|
|||
#endif
|
||||
|
||||
|
||||
|
||||
void DemoWriteQTVTimePad(int msecs);
|
||||
#define Max(a, b) ((a>b)?a:b)
|
||||
void SV_SendMVDMessage(void)
|
||||
{
|
||||
|
@ -1929,6 +1929,8 @@ void SV_SendMVDMessage(void)
|
|||
extern cvar_t sv_demoPings;
|
||||
// extern cvar_t sv_demoMaxSize;
|
||||
|
||||
SV_MVD_RunPendingConnections();
|
||||
|
||||
if (!sv.mvdrecording)
|
||||
return;
|
||||
|
||||
|
@ -1959,8 +1961,12 @@ void SV_SendMVDMessage(void)
|
|||
cls |= 1 << i;
|
||||
}
|
||||
|
||||
if (!cls) {
|
||||
if (!cls)
|
||||
{
|
||||
SZ_Clear (&demo.datagram);
|
||||
DemoWriteQTVTimePad((int)((sv.time - demo.time)*1000));
|
||||
DestFlush(false);
|
||||
demo.time = sv.time;
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue