From e5d90b3e4dd94434296985c3d24b6cfba7752725 Mon Sep 17 00:00:00 2001 From: z411 Date: Fri, 14 Aug 2020 06:09:05 -0400 Subject: [PATCH] HUD team score size increase --- qcsrc/client/hud/panel/scoreboard.qc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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 -- 2.39.2