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:
Spoike 2006-03-23 22:18:31 +00:00
parent b5b74f2529
commit 3cc22254e1
1 changed files with 1 additions and 1 deletions

View File

@ -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);