mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-26 22:01:50 +00:00
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:
parent
3fa986dd55
commit
ece33d0b2a
1 changed files with 3 additions and 0 deletions
|
@ -1759,7 +1759,10 @@ void CL_QTVPlay_f (void)
|
||||||
FILE *f;
|
FILE *f;
|
||||||
f = fopen(connrequest+1, "rt");
|
f = fopen(connrequest+1, "rt");
|
||||||
if (!f)
|
if (!f)
|
||||||
|
{
|
||||||
|
Con_Printf("Couldn't open QTV file: %s\n", connrequest+1);
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
while (!feof(f))
|
while (!feof(f))
|
||||||
{
|
{
|
||||||
fgets(buffer, sizeof(buffer)-1, f);
|
fgets(buffer, sizeof(buffer)-1, f);
|
||||||
|
|
Loading…
Reference in a new issue