common.c (COM_FindFile): commented out the debug messages about finding

and not finding a file.


git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@74 af15c1b1-3010-417e-b628-4374ebc0bcbd
This commit is contained in:
Ozkan Sezer 2010-02-20 08:20:20 +00:00
parent c31e8931a8
commit e3d6b98d8b

View file

@ -1493,8 +1493,8 @@ int COM_FindFile (char *filename, int *handle, FILE **file)
pak = search->pack;
for (i=0 ; i<pak->numfiles ; i++)
if (!strcmp (pak->files[i].name, filename))
{ // found it!
Con_DPrintf ("PackFile: %s : %s\n",pak->filename, filename);
{ // found it!
// Sys_Printf ("PackFile: %s : %s\n",pak->filename, filename);
if (handle)
{
*handle = pak->handle;
@ -1546,7 +1546,7 @@ int COM_FindFile (char *filename, int *handle, FILE **file)
strcpy (netpath, cachepath);
}
Con_DPrintf ("FindFile: %s\n",netpath);
// Sys_Printf ("FindFile: %s\n",netpath);
com_filesize = Sys_FileOpenRead (netpath, &i);
if (handle)
*handle = i;