]> git.sesse.net Git - ccbs/blobdiff - bigscreen/group.h
Only allocate space for four digits in the score screen -- if somebody actually gets...
[ccbs] / bigscreen / group.h
index f6348c0cab71576d49ddcd26700586164e24a4c3..3aa0efce2d08e2b97ec9b36e90cf212a475edb35 100644 (file)
@@ -6,13 +6,13 @@
 
 /* This more or less mimics the structures from show-tournament.pl */
 struct Song {
-       unsigned id;
-       widestring title, artist;
+       int id;
+       widestring title, short_title, artist;
 };
 struct Score {
        Song song;
        bool chosen;
-       unsigned score;
+       int score;
 };
 struct Player {
        unsigned id;