mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-06-02 10:01:54 +00:00
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:
parent
08b551f7ae
commit
3d59dfed98
24 changed files with 127 additions and 280 deletions
|
@ -163,8 +163,8 @@ cvar_t *watervis;
|
|||
CVAR_FIXME */
|
||||
cvar_t *hostname;
|
||||
|
||||
QFile *sv_logfile;
|
||||
QFile *sv_fraglogfile;
|
||||
FILE *sv_logfile;
|
||||
FILE *sv_fraglogfile;
|
||||
|
||||
void SV_AcceptClient (netadr_t adr, int userid, char *userinfo);
|
||||
void Master_Shutdown (void);
|
||||
|
@ -1110,7 +1110,7 @@ SV_WriteIP_f
|
|||
*/
|
||||
void SV_WriteIP_f (void)
|
||||
{
|
||||
QFile *f;
|
||||
FILE *f;
|
||||
char name[MAX_OSPATH];
|
||||
byte b[4];
|
||||
int i;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue