]> git.rm.cloudns.org Git - xonotic/xonotic-data.pk3dir.git/commitdiff
Duel scoreboard: PL display
authorz411 <z411@omaera.org>
Thu, 22 Apr 2021 00:51:19 +0000 (20:51 -0400)
committerz411 <z411@omaera.org>
Thu, 22 Apr 2021 00:51:19 +0000 (20:51 -0400)
qcsrc/client/hud/panel/scoreboard.qc

index ed8342aa495ea6960349738d4f33143385e2896a..9fe7bafeb4ebbeae503c03e6c7286bf8db4a77a0 100644 (file)
@@ -1346,9 +1346,13 @@ void Scoreboard_Duel_DrawTable(vector pos, bool invert, entity pl, entity tm)
                i++;
        
        tmp_str = Scoreboard_GetField(pl, SP_PING);
-       drawstring(tmp + eX * column_width * (invert ? i-- : i++) + (eX * column_width / 2) - eX * (stringwidth(tmp_str, false, hud_fontsize * 1.25) / 2),
+       drawstring(tmp + eX * column_width * i + (eX * column_width / 2) - eX * (stringwidth(tmp_str, false, hud_fontsize * 1.25) / 2),
                tmp_str, hud_fontsize * 1.25, sbt_field_rgb, panel_fg_alpha, DRAWFLAG_NORMAL);
-       
+
+       tmp_str = Scoreboard_GetField(pl, SP_PL);
+       drawstring(tmp + eX * column_width * (invert ? i-- : i++) + (eX * column_width / 2) - eX * (stringwidth(tmp_str, false, hud_fontsize * 0.75) / 2) + eY * (hud_fontsize.y * 1.25),
+               tmp_str, hud_fontsize * 0.75, sbt_field_rgb, panel_fg_alpha, DRAWFLAG_NORMAL);
+
        tmp.x = pos.x + panel_bg_padding;
        tmp.y += hud_fontsize.y * 2;