X-Git-Url: https://git.sesse.net/?p=ccbs;a=blobdiff_plain;f=bigscreen%2Fgroup.h;h=3aa0efce2d08e2b97ec9b36e90cf212a475edb35;hp=6961a90b5b2636a1e71213ebec91cc8801c6e3ba;hb=07f65e88e6fd4ebbe8c055f3acd0385f9b64f238;hpb=8970b43d021e65f07ed4d279185c5062b4f9ee4a diff --git a/bigscreen/group.h b/bigscreen/group.h index 6961a90..3aa0efc 100644 --- a/bigscreen/group.h +++ b/bigscreen/group.h @@ -6,18 +6,18 @@ /* 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; widestring nick; - unsigned score, rank; + unsigned total, rank; std::vector scores; };