mirror of
https://git.code.sf.net/p/quake/quakeforge
synced 2024-11-23 12:52:46 +00:00
fix lack of rendering in demos
This commit is contained in:
parent
b8c11cc7ec
commit
e6c4817c92
1 changed files with 7 additions and 5 deletions
|
@ -95,12 +95,14 @@ Skin_NextDownload (void)
|
|||
sc->skin = NULL;
|
||||
}
|
||||
|
||||
if (cls.state != ca_active && !cls.demoplayback) {
|
||||
// get next signon phase
|
||||
MSG_WriteByte (&cls.netchan.message, clc_stringcmd);
|
||||
MSG_WriteString (&cls.netchan.message, va ("begin %i",
|
||||
if (cls.state != ca_active) {
|
||||
if (!cls.demoplayback) {
|
||||
// get next signon phase
|
||||
MSG_WriteByte (&cls.netchan.message, clc_stringcmd);
|
||||
MSG_WriteString (&cls.netchan.message, va ("begin %i",
|
||||
cl.servercount));
|
||||
Cache_Report (); // print remaining memory
|
||||
Cache_Report (); // print remaining memory
|
||||
}
|
||||
CL_SetState (ca_active);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue