1
0
Fork 0
forked from fte/fteqw

Changed the "connection established" message to include stream ID too.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2785 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Molgrum 2007-11-16 01:23:14 +00:00
parent 868c81db4f
commit e1bd95d392

View file

@ -1844,7 +1844,7 @@ printf("%i, %s\n", qtv->buffersize, qtv->buffer);
qtv->parsetime = Sys_Milliseconds() + BUFFERTIME*1000; qtv->parsetime = Sys_Milliseconds() + BUFFERTIME*1000;
if (!qtv->usequakeworldprotocols) if (!qtv->usequakeworldprotocols)
Sys_Printf(qtv->cluster, "Connection established, buffering for %i seconds\n", BUFFERTIME); Sys_Printf(qtv->cluster, "Stream %i: Connection established, buffering for %i seconds\n", qtv->streamid, BUFFERTIME);
SV_ForwardStream(qtv, qtv->buffer, qtv->forwardpoint); SV_ForwardStream(qtv, qtv->buffer, qtv->forwardpoint);
} }