From: Samual Date: Mon, 24 Oct 2011 20:29:45 +0000 (-0400) Subject: Correct comment X-Git-Tag: xonotic-v0.6.0~35^2~78^2~7^2~7 X-Git-Url: https://git.rm.cloudns.org/?a=commitdiff_plain;h=123e28400e2d61bda79a9ed608cb1b45c10a985d;p=xonotic%2Fxonotic-data.pk3dir.git Correct comment --- 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;