From: Steinar H. Gunderson Date: Sat, 5 Mar 2005 01:08:39 +0000 (+0000) Subject: Don't show "needs to qualify" if all in group qualify. X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=6c10aec4722be34e2aa39805c29c7fb057eb7707 Don't show "needs to qualify" if all in group qualify. --- diff --git a/bigscreen/groupscreen.cpp b/bigscreen/groupscreen.cpp index 0fc28c0..cdd2633 100644 --- a/bigscreen/groupscreen.cpp +++ b/bigscreen/groupscreen.cpp @@ -550,6 +550,7 @@ void GroupScreen::draw_next_up_player(unsigned char *buf, const Group &group, co } if (group.num_qualifying > 0 && + group.num_qualifying != group.players.size() && player.total + max_score_this_song > unsigned(qualify_beat_worst_case) && (unsigned(qualify_beat_worst_case) != win_beat)) { int qual_need = std::max(qualify_beat_worst_case - player.total + 1, 0U);