From 3098def6c2818a869a8c021118167e82716bdbb1 Mon Sep 17 00:00:00 2001 From: Molgrum Date: Fri, 16 Nov 2007 18:26:10 +0000 Subject: [PATCH] Add more verbosity. git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2788 fc73d0e0-1445-4013-8a0c-d673dee63da5 --- fteqtv/source.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fteqtv/source.c b/fteqtv/source.c index 3a77ac76..f99b73bf 100644 --- a/fteqtv/source.c +++ b/fteqtv/source.c @@ -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