From 6a4f6a681b6075ceaa165577dd1c1ddb1f4f90b6 Mon Sep 17 00:00:00 2001 From: sezero Date: Sat, 20 Feb 2010 08:20:20 +0000 Subject: [PATCH] common.c (COM_FindFile): commented out the debug messages about finding and not finding a file. git-svn-id: svn+ssh://svn.code.sf.net/p/quakespasm/code/trunk@74 af15c1b1-3010-417e-b628-4374ebc0bcbd --- quakespasm/Quake/common.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quakespasm/Quake/common.c b/quakespasm/Quake/common.c index b36216a4..9aa70998 100644 --- a/quakespasm/Quake/common.c +++ b/quakespasm/Quake/common.c @@ -1493,8 +1493,8 @@ int COM_FindFile (char *filename, int *handle, FILE **file) pak = search->pack; for (i=0 ; inumfiles ; 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;