]> git.sesse.net Git - ccbs/blobdiff - bigscreen/group.h
Find out which player is playing next (and which song), but don't print it yet.
[ccbs] / bigscreen / group.h
index f6348c0cab71576d49ddcd26700586164e24a4c3..35c89c482eb2e681409b626af6241a98b180cc04 100644 (file)
@@ -6,16 +6,16 @@
 
 /* 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;
+       unsigned id, position;
        widestring nick;
        unsigned total, rank;