mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-06-01 09:32:36 +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
|
@ -1186,8 +1186,8 @@ CL_Init
|
|||
*/
|
||||
void CL_Init (void)
|
||||
{
|
||||
QFile *servlist;
|
||||
char st[80];
|
||||
FILE *servlist;
|
||||
char st[80];
|
||||
|
||||
cls.state = ca_disconnected;
|
||||
|
||||
|
@ -1484,7 +1484,7 @@ Writes key bindings and archived cvars to config.cfg
|
|||
*/
|
||||
void Host_WriteConfiguration (void)
|
||||
{
|
||||
QFile *f;
|
||||
FILE *f;
|
||||
|
||||
if (host_initialized)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue