From 809331246acf9722624f1adc8e9de00257746738 Mon Sep 17 00:00:00 2001 From: terencehill Date: Sun, 26 Jun 2011 19:00:15 +0200 Subject: [PATCH] Do not wrap differently the msg while fading out --- qcsrc/client/hud.qc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 7173d1b1bb..da0ffbb15a 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -4547,7 +4547,7 @@ void HUD_CenterPrint (void) for(k = 0; k < n; ++k) { getWrappedLine_remaining = argv(k); - ts = getWrappedLine(panel_size_x, fontsize, stringwidth_colors); + ts = getWrappedLine(panel_size_x * sz, fontsize, stringwidth_colors); if (ts != "") pos_y -= fontsize_y; else @@ -4566,7 +4566,7 @@ void HUD_CenterPrint (void) getWrappedLine_remaining = argv(k); while(getWrappedLine_remaining) { - ts = getWrappedLine(panel_size_x, fontsize, stringwidth_colors); + ts = getWrappedLine(panel_size_x * sz, fontsize, stringwidth_colors); if (ts != "") { if (align) -- 2.39.2