From: z411 Date: Fri, 14 Aug 2020 10:09:05 +0000 (-0400) Subject: HUD team score size increase X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=e5d90b3e4dd94434296985c3d24b6cfba7752725;p=xonotic%2Fxonotic-data.pk3dir.git HUD team score size increase --- diff --git a/qcsrc/client/hud/panel/scoreboard.qc b/qcsrc/client/hud/panel/scoreboard.qc index a7efc181a..4ed95b116 100644 --- a/qcsrc/client/hud/panel/scoreboard.qc +++ b/qcsrc/client/hud/panel/scoreboard.qc @@ -1745,14 +1745,14 @@ void Scoreboard_Draw() if (autocvar_hud_panel_scoreboard_team_size_position != 1) // team size not on left { // team score on the left (default) - str_pos = pos + team_score_baseoffset - eX * stringwidth(str, false, hud_fontsize * 1.5); + str_pos = pos + team_score_baseoffset - eX * stringwidth(str, false, hud_fontsize * 3); } else { // team score on the right - str_pos = pos + team_score_baseoffset + eX * (panel_size.x + hud_fontsize.x * 1.5); + str_pos = pos + team_score_baseoffset + eX * (panel_size.x + hud_fontsize.x * 3); } - drawstring(str_pos, str, hud_fontsize * 1.5, rgb, panel_fg_alpha, DRAWFLAG_NORMAL); + drawstring(str_pos, str, hud_fontsize * 3, rgb, panel_fg_alpha, DRAWFLAG_NORMAL); // team size (if set to show on the side) if (autocvar_hud_panel_scoreboard_team_size_position != 0) // team size not off