Before I can fix the (MANY!) problems with newtree, I have to fix the

little problem of mixed QFile and FILE.  Since we're not using ZLib in
this tree, QFile makes no real sense.  That didn't fix the real problem
I am having though.
This commit is contained in:
Joseph Carter 2000-05-22 21:16:22 +00:00
parent 08b551f7ae
commit 3d59dfed98
24 changed files with 127 additions and 280 deletions

View file

@ -178,7 +178,7 @@ to start a download from the server.
*/
qboolean CL_CheckOrDownloadFile (char *filename)
{
QFile *f;
FILE *f;
if (strstr (filename, ".."))
{
@ -548,7 +548,7 @@ CL_ParseServerData
void CL_ParseServerData (void)
{
char *str;
QFile *f;
FILE *f;
char fn[MAX_OSPATH];
qboolean cflag = false;
extern char gamedirfile[MAX_OSPATH];