X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=bigscreen%2Fgroup.h;h=c57f7b3aba6a2b368d0495bcf4469c921c216c0b;hb=59ec2de58b1a4d904a71bce150d389a700c0f954;hp=6961a90b5b2636a1e71213ebec91cc8801c6e3ba;hpb=8970b43d021e65f07ed4d279185c5062b4f9ee4a;p=ccbs diff --git a/bigscreen/group.h b/bigscreen/group.h index 6961a90..c57f7b3 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; + int id; widestring 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; };