From b1afe294f2dc46316b29a1ac18b70236ed2ae2e1 Mon Sep 17 00:00:00 2001 From: Ozkan Sezer Date: Sun, 12 Feb 2012 11:33:07 +0000 Subject: [PATCH] at least use the api sensibly and don't screw the whitespace git-svn-id: svn://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm@637 af15c1b1-3010-417e-b628-4374ebc0bcbd --- Quake/common.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/Quake/common.c b/Quake/common.c index 0e0f4feb..f486b770 100644 --- a/Quake/common.c +++ b/Quake/common.c @@ -1505,7 +1505,7 @@ static int COM_FindFile (const char *filename, int *handle, FILE **file, searchpath_t *search; char netpath[MAX_OSPATH]; pack_t *pak; - int i, findtime, l; + int i, findtime; if (file && handle) Sys_Error ("COM_FindFile: both handle and file set"); @@ -1582,13 +1582,10 @@ static int COM_FindFile (const char *filename, int *handle, FILE **file, } } - l = strlen(filename); - if (l < 3 || strcmp (filename+l-3,"pcx") != 0) - Con_DPrintf ("FindFile: can't find %s\n", filename); - else - Con_DPrintf2 ("FindFile: can't find %s\n", filename); + if (strcmp(COM_FileGetExtension(filename), "pcx") != 0) + Con_DPrintf ("FindFile: can't find %s\n", filename); + else Con_DPrintf2("FindFile: can't find %s\n", filename); // Log pcx texture misses only if (developer.value >= 2) - // Would've been better if I'd implement and use Sys_DPrintf() - O.S. if (handle) *handle = -1;