]> git.sesse.net Git - ccbs/blobdiff - bigscreen/groupscreen.cpp
Actually show a total for each player.
[ccbs] / bigscreen / groupscreen.cpp
index 5f16ebf22fe98be6766e3a2fc772af2c0cca28da..26d769af52884bdfedfd253f52d034f17e755227 100644 (file)
@@ -123,6 +123,16 @@ void GroupScreen::draw(unsigned char *buf)
                        x += width[col] + 20;
                }
 
+               // draw total
+               {
+                       char text[16];
+                       sprintf(text, "%u", i->total);
+                       
+                       unsigned this_width = my_draw_text(text, NULL, 22.0);
+                       my_draw_text(text, buf, 22.0, x + width[num_scores + 1] / 2 - this_width / 2, y);
+                       x += width[num_scores + 1] + 20;
+               }
+
                y += 40;
        }