projects
/
xonotic
/
darkplaces.git
/ commitdiff
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
10c8faa
)
draw [] brackets on the top 4 frags display before the frags count rather than after...
author
havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 13 Jul 2005 14:20:17 +0000
(14:20 +0000)
committer
havoc <havoc@d7cf8633-e32d-0410-b094-e92efae38249>
Wed, 13 Jul 2005 14:20:17 +0000
(14:20 +0000)
git-svn-id: svn://svn.icculus.org/twilight/trunk/darkplaces@5528
d7cf8633
-e32d-0410-b094-
e92efae38249
sbar.c
patch
|
blob
|
history
diff --git
a/sbar.c
b/sbar.c
index
53fd913
..
6c2c680
100644
(file)
--- a/
sbar.c
+++ b/
sbar.c
@@
-723,15
+723,14
@@
void Sbar_DrawFrags (void)
f = s->frags;
sprintf (num, "%3i",f);
- Sbar_DrawCharacter (x + 8, -24, num[0]);
- Sbar_DrawCharacter (x + 16, -24, num[1]);
- Sbar_DrawCharacter (x + 24, -24, num[2]);
-
if (k == cl.viewentity - 1)
{
Sbar_DrawCharacter ( x + 2, -24, 16);
Sbar_DrawCharacter ( x + 32 - 4, -24, 17);
}
+ Sbar_DrawCharacter (x + 8, -24, num[0]);
+ Sbar_DrawCharacter (x + 16, -24, num[1]);
+ Sbar_DrawCharacter (x + 24, -24, num[2]);
x += 32;
}
}