From: MirceaKitsune Date: Mon, 18 Jul 2011 15:29:21 +0000 (+0300) Subject: Add a percent symbol to the stomach board X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=b2441f52cd4b07ee0474987341c5280292149221;p=voretournament%2Fvoretournament.git Add a percent symbol to the stomach board --- diff --git a/data/qcsrc/client/sbar.qc b/data/qcsrc/client/sbar.qc index d16aab82..4b646a50 100644 --- a/data/qcsrc/client/sbar.qc +++ b/data/qcsrc/client/sbar.qc @@ -3033,7 +3033,7 @@ void Sbar_Draw (void) vector status_pos; string status_text; - status_text = strcat(ftos(stomach_load), "/", ftos(stomach_maxload)); + status_text = strcat(ftos(stomach_load), "/", ftos(stomach_maxload), "%"); status_pos = bottomleft - '-44 168 0'; status_pos -= '1 0 0' * stringwidth(status_text, FALSE, '16 16 0') * 0.5; drawstring(status_pos, status_text, '16 16 0', '1 1 1', sbar_alpha_fg, DRAWFLAG_NORMAL);