1
0
Fork 0
forked from fte/fteqw

Cvar to disable ^b stuff.

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1333 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2005-09-14 04:43:03 +00:00
parent a18be7b9e0
commit f402c86fe0

View file

@ -671,6 +671,7 @@ void SWDraw_ColouredCharacter (int x, int y, unsigned int num)
qbyte *source;
int drawline;
int row, col;
extern cvar_t cl_noblink;
int colour;
@ -684,8 +685,9 @@ int colour;
if (num & CON_BLINKTEXT)
{
if ((int)(cl.time*2) & 1)
return;
if (!cl_noblink.value)
if ((int)(cl.time*2) & 1)
return;
}
if (colour == COLOR_WHITE)