forked from fte/fteqw
1
0
Fork 0

trying to fix bigfoot's mobile phone hud

git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@1869 fc73d0e0-1445-4013-8a0c-d673dee63da5
This commit is contained in:
Spoike 2006-01-14 23:46:24 +00:00
parent 5e0ecbc3d9
commit 05566ba996
1 changed files with 4 additions and 4 deletions

View File

@ -2004,9 +2004,9 @@ void Sbar_DeathmatchOverlay (int start)
if (cl.teamplay)
{
if (scr_chatmode)
x = vid.width/2 + (vid.width/2 - 320)/2 + 4;
x = vid.width/2 + ((int)vid.width/2 - 320)/2 + 4;
else
x = (vid.width - 320)/2 + 4;
x = ((int)vid.width - 320)/2 + 4;
// 0 40 64 104 152 192
Draw_String ( x , y, "ping pl time frags team name");
y += 8;
@ -2017,9 +2017,9 @@ void Sbar_DeathmatchOverlay (int start)
else
{
if (scr_chatmode)
x = vid.width/2 + (vid.width/2 - 320)/2 + 16;
x = vid.width/2 + ((int)vid.width/2 - 320)/2 + 16;
else
x = (vid.width - 320)/2 + 16;
x = ((int)vid.width - 320)/2 + 16;
// 0 40 64 104 152
Draw_String ( x , y, "ping pl time frags name");
y += 8;