]> git.sesse.net Git - ccbs/blobdiff - bigscreen/groupscreen.cpp
Fix column headings; they were broken after a mismerge.
[ccbs] / bigscreen / groupscreen.cpp
index 92618f5cf395760cf28ff230e667441d907e22ec..1513ef31c36bc42972606d2ea61e29ac9b8a06f2 100644 (file)
@@ -81,6 +81,14 @@ void GroupScreen::draw_column_headings(std::vector<TextDefer> &td, const Group &
        unsigned col = 1;
        unsigned x = 40 + colwidth[0];
        for (std::vector<Score>::const_iterator i = group.players[0].scores.begin(); i != group.players[0].scores.end(); ++i, ++col) {
+               if (!i->chosen) {
+                       unsigned this_width = my_draw_text(i->song.short_title, NULL, 12.0, "columnheading");
+                       my_draw_text_deferred(td, i->song.short_title, 12.0, "columnheading", "columnheading", x + colwidth[col] / 2 - this_width / 2, 100);
+               }
+               x += colwidth[col] + 20;
+       }
+
+       if (num_scores > 1) {
                unsigned this_width = my_draw_text("Total", NULL, 12.0, "columnheading");
                my_draw_text_deferred(td, "Total", 12.0, "columnheading", "columnheading", x + colwidth[num_scores + 1] / 2 - this_width / 2, 100);
                x += colwidth[num_scores + 1] + 20;