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:
parent
5e0ecbc3d9
commit
05566ba996
1 changed files with 4 additions and 4 deletions
|
@ -2004,9 +2004,9 @@ void Sbar_DeathmatchOverlay (int start)
|
||||||
if (cl.teamplay)
|
if (cl.teamplay)
|
||||||
{
|
{
|
||||||
if (scr_chatmode)
|
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
|
else
|
||||||
x = (vid.width - 320)/2 + 4;
|
x = ((int)vid.width - 320)/2 + 4;
|
||||||
// 0 40 64 104 152 192
|
// 0 40 64 104 152 192
|
||||||
Draw_String ( x , y, "ping pl time frags team name");
|
Draw_String ( x , y, "ping pl time frags team name");
|
||||||
y += 8;
|
y += 8;
|
||||||
|
@ -2017,9 +2017,9 @@ void Sbar_DeathmatchOverlay (int start)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (scr_chatmode)
|
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
|
else
|
||||||
x = (vid.width - 320)/2 + 16;
|
x = ((int)vid.width - 320)/2 + 16;
|
||||||
// 0 40 64 104 152
|
// 0 40 64 104 152
|
||||||
Draw_String ( x , y, "ping pl time frags name");
|
Draw_String ( x , y, "ping pl time frags name");
|
||||||
y += 8;
|
y += 8;
|
||||||
|
|
Loading…
Reference in a new issue