1
0
Fork 0
forked from fte/fteqw

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:
Spoike 2005-10-22 00:59:00 +00:00
parent 40fcabd08d
commit bbb2be40f6

View file

@ -1077,6 +1077,12 @@ void CG_Stop (void)
void CG_Start (void) void CG_Start (void)
{ {
if (cls.protocol != CP_QUAKE3)
{ //q3 clients only.
CG_Stop();
return;
}
#ifdef RGLQUAKE #ifdef RGLQUAKE
if (!Draw_SafeCachePic) //no renderer loaded if (!Draw_SafeCachePic) //no renderer loaded
{ {
@ -1091,12 +1097,6 @@ void CG_Start (void)
return; return;
} }
if (cls.protocol != CP_QUAKE3)
{ //q3 clients only.
CG_Stop();
return;
}
Z_FreeTags(CGTAGNUM); Z_FreeTags(CGTAGNUM);
SCR_BeginLoadingPlaque(); SCR_BeginLoadingPlaque();