server now starts without segging and fix a compile error in tga.c

This commit is contained in:
Bill Currie 2000-10-30 00:05:21 +00:00
parent 005daa844d
commit 56ac383268
2 changed files with 4 additions and 1 deletions

View file

@ -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 ();

View file

@ -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);
}
*/
/*