mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
new cvar to disable ^b, especially with people's names on the hud..
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1319 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
7f993dfb75
commit
7e3bc6a2e1
1 changed files with 4 additions and 2 deletions
|
@ -58,6 +58,7 @@ extern cvar_t gl_picmip2d;
|
|||
extern cvar_t r_drawdisk;
|
||||
extern cvar_t gl_compress;
|
||||
extern cvar_t gl_font, gl_conback, gl_smoothfont, gl_fontedgeclamp;
|
||||
extern cvar_t cl_noblink;
|
||||
|
||||
extern cvar_t gl_savecompressedtex;
|
||||
|
||||
|
@ -1230,8 +1231,9 @@ void GLDraw_ColouredCharacter (int x, int y, unsigned int num)
|
|||
|
||||
if (num & CON_BLINKTEXT)
|
||||
{
|
||||
if ((int)(realtime*3) & 1)
|
||||
return;
|
||||
if (!cl_noblink.value)
|
||||
if ((int)(realtime*3) & 1)
|
||||
return;
|
||||
}
|
||||
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue