Debug printout.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2939 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Molgrum 2008-03-29 07:10:21 +00:00
parent 3fa986dd55
commit ece33d0b2a
1 changed files with 3 additions and 0 deletions

View File

@ -1759,7 +1759,10 @@ void CL_QTVPlay_f (void)
FILE *f;
f = fopen(connrequest+1, "rt");
if (!f)
{
Con_Printf("Couldn't open QTV file: %s\n", connrequest+1);
return;
}
while (!feof(f))
{
fgets(buffer, sizeof(buffer)-1, f);