mirror of
https://github.com/nzp-team/fteqw.git
synced 2024-11-10 22:51:57 +00:00
Should fix the off-by-one mouse/titles in the server browser
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@2135 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
parent
b5b74f2529
commit
3cc22254e1
1 changed files with 1 additions and 1 deletions
|
@ -910,7 +910,7 @@ void SL_DrawColumnTitle (int *x, int y, int xlen, int mx, char *str, qboolean re
|
|||
|
||||
if (recolor)
|
||||
str = va("^&%c-%s", clr, str);
|
||||
if (mx > xmin && !(*filldraw))
|
||||
if (mx >= xmin && !(*filldraw))
|
||||
{
|
||||
*filldraw = true;
|
||||
Draw_FillRGB(xmin*8, y, xlen*8, 8, (sin(realtime*4.4)*0.25)+0.5, (sin(realtime*4.4)*0.25)+0.5, 0.08);
|
||||
|
|
Loading…
Reference in a new issue