From 123e28400e2d61bda79a9ed608cb1b45c10a985d Mon Sep 17 00:00:00 2001 From: Samual Date: Mon, 24 Oct 2011 16:29:45 -0400 Subject: [PATCH] Correct comment --- 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 b4f24b1c5..23f8ccd61 100644 --- a/qcsrc/client/hud.qc +++ b/qcsrc/client/hud.qc @@ -4741,7 +4741,7 @@ void HUD_CenterPrint (void) if (a < 1 && centerprint_msgID[j] == 0) // messages with id can be replaced just after they are faded out, so never move over them the next messages pos_y += (msg_size + CENTERPRINT_SPACING * fontsize_y) * (1 - sqrt(sz)); - if (pos_y < panel_pos_y) // check if the next line can be shown + if (pos_y < panel_pos_y) // check if the next message can be shown { drawfontscale = '1 1 0'; return; @@ -4753,7 +4753,7 @@ void HUD_CenterPrint (void) if (a < 1 && centerprint_msgID[j] == 0) // messages with id can be replaced just after they are faded out, so never move over them the next messages pos_y -= (msg_size + CENTERPRINT_SPACING * fontsize_y) * (1 - sqrt(sz)); - if(pos_y > panel_pos_y + panel_size_y - fontsize_y) // check if the next line can be shown + if(pos_y > panel_pos_y + panel_size_y - fontsize_y) // check if the next message can be shown { drawfontscale = '1 1 0'; return; -- 2.39.2