X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=bigscreen%2Fgroupscreen.cpp;h=86ff4672e97d58518156d9838dde9b5c73e83020;hp=50d63b2f8ede2f7390076aa4898aa0f15a277f7d;hb=e7b4a93b19eb80023d2b58d36c8255f589e36d2d;hpb=47647e430209e70479579de3725b193baf26630a 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; }