From: terencehill Date: Sun, 26 Jun 2011 16:35:56 +0000 (+0200) Subject: Don't forget to reset drawscale! X-Git-Tag: xonotic-v0.5.0~178 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=182117de4422dac6e0263cb336ab449026acc238;p=xonotic%2Fxonotic-data.pk3dir.git Don't forget to reset drawscale! --- 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 }