mirror of
https://github.com/ReactionQuake3/reaction.git
synced 2025-02-08 09:22:39 +00:00
weapon stats - fixed a formating bug.
This commit is contained in:
parent
cb706debe5
commit
8de2aca82c
1 changed files with 5 additions and 2 deletions
|
@ -5,6 +5,9 @@
|
||||||
//-----------------------------------------------------------------------------
|
//-----------------------------------------------------------------------------
|
||||||
//
|
//
|
||||||
// $Log$
|
// $Log$
|
||||||
|
// Revision 1.11 2002/03/03 23:12:18 blaze
|
||||||
|
// weapon stats - fixed a formating bug.
|
||||||
|
//
|
||||||
// Revision 1.10 2002/03/03 21:44:01 blaze
|
// Revision 1.10 2002/03/03 21:44:01 blaze
|
||||||
// weapon stats, done, beta test for bugs
|
// weapon stats, done, beta test for bugs
|
||||||
//
|
//
|
||||||
|
@ -1078,7 +1081,7 @@ void CG_DrawWeaponStats(void)
|
||||||
|
|
||||||
//Kills
|
//Kills
|
||||||
i=2;
|
i=2;
|
||||||
offset = 44;
|
offset = 39;
|
||||||
MAKERGBA(color, 1.0f, 1.0f, 1.0f, 1.0f);
|
MAKERGBA(color, 1.0f, 1.0f, 1.0f, 1.0f);
|
||||||
CG_DrawSmallStringColor(WS_LEFTSIDE + 6 + SMALLCHAR_WIDTH * (offset - 1), WS_TOP + SB_PADDING * 4 + SMALLCHAR_HEIGHT * i++,
|
CG_DrawSmallStringColor(WS_LEFTSIDE + 6 + SMALLCHAR_WIDTH * (offset - 1), WS_TOP + SB_PADDING * 4 + SMALLCHAR_HEIGHT * i++,
|
||||||
"Kills", color);
|
"Kills", color);
|
||||||
|
@ -1140,7 +1143,7 @@ void CG_DrawWeaponStats(void)
|
||||||
|
|
||||||
//Deaths
|
//Deaths
|
||||||
i=2;
|
i=2;
|
||||||
offset = 45;
|
offset = 47;
|
||||||
MAKERGBA(color, 1.0f, 1.0f, 1.0f, 1.0f);
|
MAKERGBA(color, 1.0f, 1.0f, 1.0f, 1.0f);
|
||||||
CG_DrawSmallStringColor(WS_LEFTSIDE + 6 + SMALLCHAR_WIDTH * (offset -2), WS_TOP + SB_PADDING * 4 + SMALLCHAR_HEIGHT * i++,
|
CG_DrawSmallStringColor(WS_LEFTSIDE + 6 + SMALLCHAR_WIDTH * (offset -2), WS_TOP + SB_PADDING * 4 + SMALLCHAR_HEIGHT * i++,
|
||||||
"Deaths", color);
|
"Deaths", color);
|
||||||
|
|
Loading…
Reference in a new issue