SW should work properly now.
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1531 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
40fcabd08d
commit
bbb2be40f6
1 changed files with 6 additions and 6 deletions
|
@ -1077,6 +1077,12 @@ void CG_Stop (void)
|
|||
|
||||
void CG_Start (void)
|
||||
{
|
||||
if (cls.protocol != CP_QUAKE3)
|
||||
{ //q3 clients only.
|
||||
CG_Stop();
|
||||
return;
|
||||
}
|
||||
|
||||
#ifdef RGLQUAKE
|
||||
if (!Draw_SafeCachePic) //no renderer loaded
|
||||
{
|
||||
|
@ -1091,12 +1097,6 @@ void CG_Start (void)
|
|||
return;
|
||||
}
|
||||
|
||||
if (cls.protocol != CP_QUAKE3)
|
||||
{ //q3 clients only.
|
||||
CG_Stop();
|
||||
return;
|
||||
}
|
||||
|
||||
Z_FreeTags(CGTAGNUM);
|
||||
SCR_BeginLoadingPlaque();
|
||||
|
||||
|
|
Loading…
Reference in a new issue