fix to sw build for Spike's commit

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1787 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
TimeServ 2006-01-04 02:38:09 +00:00
parent 1c842b0a1e
commit bcc2b38685
1 changed files with 4 additions and 1 deletions

View File

@ -186,8 +186,11 @@ qboolean SWR_CheckSky (void)
}
sprintf (pathname, "env/%s%s.tga", skyname, suf[r_skysideimage[i]]);
if (!CL_CheckOrDownloadFile(pathname, NULL, -1))
if (!COM_FCheckExists(pathname))
return false;
// if (!CL_CheckOrDownloadFile(pathname, NULL, -1))
// return false;
}
return true;
}