mirror of
https://git.code.sf.net/p/quake/newtree
synced 2025-02-16 16:41:30 +00:00
server now starts without segging and fix a compile error in tga.c
This commit is contained in:
parent
005daa844d
commit
56ac383268
2 changed files with 4 additions and 1 deletions
|
@ -1887,6 +1887,8 @@ void SV_Init (quakeparms_t *parms)
|
|||
// execute sets again after the config file has been parsed ..
|
||||
Cbuf_Execute_Sets ();
|
||||
|
||||
COM_Filesystem_Init_Cvars ();
|
||||
|
||||
// and now reprocess the cmdline's sets for overrides
|
||||
Cmd_StuffCmds_f ();
|
||||
Cbuf_Execute_Sets ();
|
||||
|
|
|
@ -53,7 +53,7 @@ fgetLittleShort (QFile *f)
|
|||
|
||||
return (short)(b1 + b2*256);
|
||||
}
|
||||
|
||||
/*
|
||||
static int
|
||||
fgetLittleLong (QFile *f)
|
||||
{
|
||||
|
@ -66,6 +66,7 @@ fgetLittleLong (QFile *f)
|
|||
|
||||
return b1 + (b2<<8) + (b3<<16) + (b4<<24);
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in a new issue