hey, nq-server works until you connect :)

This commit is contained in:
Bill Currie 2001-10-03 22:25:24 +00:00
parent b2852ef3cc
commit cd9832d95f
2 changed files with 10 additions and 2 deletions

View file

@ -642,6 +642,14 @@ Con_CompleteCommandLine (void)
void
Con_ProcessInput (void)
{
const char *cmd;
while (1) {
cmd = Sys_ConsoleInput ();
if (!cmd)
break;
Cbuf_AddText (cmd);
}
}
void

View file

@ -49,13 +49,13 @@ Mod_LoadLighting (lump_t *l)
void
Mod_LoadAliasModel (model_t *mod, void *buf)
{
Mod_LoadBrushModel (mod, buf);
//Mod_LoadBrushModel (mod, buf);
}
void
Mod_LoadSpriteModel (model_t *mod, void *buf)
{
Mod_LoadBrushModel (mod, buf);
//Mod_LoadBrushModel (mod, buf);
}
void