diff --git a/nq/source/console.c b/nq/source/console.c index 9cf6efff9..8d821b9b5 100644 --- a/nq/source/console.c +++ b/nq/source/console.c @@ -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 diff --git a/nq/source/sv_model.c b/nq/source/sv_model.c index 2f62c1d6c..dc395de70 100644 --- a/nq/source/sv_model.c +++ b/nq/source/sv_model.c @@ -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