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:
parent
a18be7b9e0
commit
f402c86fe0
1 changed files with 4 additions and 2 deletions
|
@ -671,6 +671,7 @@ void SWDraw_ColouredCharacter (int x, int y, unsigned int num)
|
||||||
qbyte *source;
|
qbyte *source;
|
||||||
int drawline;
|
int drawline;
|
||||||
int row, col;
|
int row, col;
|
||||||
|
extern cvar_t cl_noblink;
|
||||||
|
|
||||||
int colour;
|
int colour;
|
||||||
|
|
||||||
|
@ -684,8 +685,9 @@ int colour;
|
||||||
|
|
||||||
if (num & CON_BLINKTEXT)
|
if (num & CON_BLINKTEXT)
|
||||||
{
|
{
|
||||||
if ((int)(cl.time*2) & 1)
|
if (!cl_noblink.value)
|
||||||
return;
|
if ((int)(cl.time*2) & 1)
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (colour == COLOR_WHITE)
|
if (colour == COLOR_WHITE)
|
||||||
|
|
Loading…
Reference in a new issue