mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2025-01-29 20:20:43 +00:00
hey, nq-server works until you connect :)
This commit is contained in:
parent
b2852ef3cc
commit
cd9832d95f
2 changed files with 10 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue