mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 14:42:13 +00:00
Add more verbosity.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2788 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
35854f67b8
commit
3098def6c2
1 changed files with 2 additions and 2 deletions
|
@ -1859,7 +1859,7 @@ void QTV_Run(sv_t *qtv)
|
|||
{
|
||||
qtv->parsetime = qtv->curtime + 2*1000; //add two seconds
|
||||
if (qtv->sourcefile || qtv->sourcesock != INVALID_SOCKET)
|
||||
QTV_Printf(qtv, "Not enough buffered\n");
|
||||
QTV_Printf(qtv, "Stream %i: Not enough buffered\n", qtv->streamid);
|
||||
}
|
||||
break;
|
||||
}
|
||||
|
@ -1874,7 +1874,7 @@ void QTV_Run(sv_t *qtv)
|
|||
{ //not enough stuff to play.
|
||||
qtv->parsetime = qtv->curtime + 2*1000; //add two seconds
|
||||
if (qtv->sourcefile || qtv->sourcesock != INVALID_SOCKET)
|
||||
QTV_Printf(qtv, "Not enough buffered\n");
|
||||
QTV_Printf(qtv, "Stream %i: Not enough buffered\n", qtv->streamid);
|
||||
continue;
|
||||
}
|
||||
qtv->parsetime += buffer[0]; //well this was pointless
|
||||
|
|
Loading…
Reference in a new issue