From 33c1ea94c4066a0c2862c9d765741b47d9245900 Mon Sep 17 00:00:00 2001 From: Steven Date: Wed, 8 Feb 2012 00:53:29 +0000 Subject: [PATCH] Refine missing texture no-spam hack. git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@628 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/common.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Quake/common.c b/Quake/common.c index f7c90974..b37792cb 100644 --- a/Quake/common.c +++ b/Quake/common.c @@ -1584,9 +1584,9 @@ static int COM_FindFile (const char *filename, int *handle, FILE **file, } - // Don't spam about missing external textures + // Don't spam about missing pcx textures l = strlen(filename); - if (strcmp (filename+l-3,"pcx") != 0 && strcmp (filename+l-3,"tga") != 0) + if (strcmp (filename+l-3,"pcx") != 0) Con_DPrintf ("FindFile: can't find %s\n", filename); if (handle)