From 182117de4422dac6e0263cb336ab449026acc238 Mon Sep 17 00:00:00 2001 From: terencehill Date: Sun, 26 Jun 2011 18:35:56 +0200 Subject: [PATCH] Don't forget to reset drawscale! --- qcsrc/client/hud.qc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/qcsrc/client/hud.qc b/qcsrc/client/hud.qc index 7b699c44b..7173d1b1b 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -4553,7 +4553,10 @@ void HUD_CenterPrint (void) else pos_y -= fontsize_y * 0.35; if (pos_y < panel_pos_y) // check if the next line can be shown + { + drawfontscale = '1 1 0'; return; + } } current_msg_pos_y = pos_y; // save starting pos (first line) of the current message } -- 2.39.2