mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 07:21:58 +00:00
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:
parent
c31e8931a8
commit
e3d6b98d8b
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue