mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-10 15:22:04 +00:00
Don't force the console for ca_connected.
It's valid not to draw the console in ca_connected when changing levels.
This commit is contained in:
parent
ec94a1e459
commit
543c4b2442
1 changed files with 1 additions and 1 deletions
|
@ -512,7 +512,7 @@ CL_SetState (cactive_t state)
|
|||
CL_UpdateScreen (cl.time);
|
||||
}
|
||||
if (con_module)
|
||||
con_module->data->console->force_commandline = (state != ca_active);
|
||||
con_module->data->console->force_commandline = (state < ca_connected);
|
||||
}
|
||||
|
||||
static void
|
||||
|
|
Loading…
Reference in a new issue