mirror of
https://git.code.sf.net/p/quake/quakeforge-old
synced 2024-11-22 11:51:17 +00:00
Fix the gentle crash on game load once in a game. (#ifdef UQUQKE doesn't help
much, does it?:)
This commit is contained in:
parent
78a1e3e6bc
commit
692f99de11
1 changed files with 3 additions and 3 deletions
|
@ -570,7 +570,7 @@ void CL_Disconnect (void)
|
|||
cls.state = ca_disconnected;
|
||||
|
||||
cls.demoplayback = cls.demorecording = cls.timedemo = false;
|
||||
#ifdef UQUQKE
|
||||
#ifdef UQUAKE
|
||||
if (sv.active)
|
||||
SV_Shutdown(false);
|
||||
#endif
|
||||
|
@ -585,7 +585,7 @@ void CL_Disconnect (void)
|
|||
|
||||
CL_StopUpload();
|
||||
#endif
|
||||
#ifdef UQUQKE
|
||||
#ifdef UQUAKE
|
||||
cls.demoplayback = cls.timedemo = false;
|
||||
cls.signon = 0;
|
||||
#endif
|
||||
|
@ -594,7 +594,7 @@ void CL_Disconnect (void)
|
|||
void CL_Disconnect_f (void)
|
||||
{
|
||||
CL_Disconnect ();
|
||||
#ifdef UQUQKE
|
||||
#ifdef UQUAKE
|
||||
if (sv.active)
|
||||
SV_Shutdown (false);
|
||||
#endif
|
||||
|
|
Loading…
Reference in a new issue