From e7b4a93b19eb80023d2b58d36c8255f589e36d2d Mon Sep 17 00:00:00 2001 From: "Steinar H. Gunderson" Date: Sat, 19 Feb 2005 18:19:19 +0000 Subject: [PATCH 1/1] Don't show column headings for chosen songs, as they are not the same everywhere, of course. --- bigscreen/groupscreen.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bigscreen/groupscreen.cpp b/bigscreen/groupscreen.cpp index 50d63b2..86ff467 100644 --- a/bigscreen/groupscreen.cpp +++ b/bigscreen/groupscreen.cpp @@ -51,7 +51,8 @@ void GroupScreen::draw(unsigned char *buf) // make column headings from the first player's songs unsigned col = 1, x = 40 + width[0]; for (std::vector::const_iterator i = group.players[0].scores.begin(); i != group.players[0].scores.end(); ++i, ++col) { - my_draw_text(i->song.title, buf, x, 30, true, 255, 255, 255); + if (!i->chosen) + my_draw_text(i->song.title, buf, x, 30, true, 255, 255, 255); x += width[col] + 20; } -- 2.39.2