From: Steinar H. Gunderson Date: Sat, 5 Mar 2005 00:46:19 +0000 (+0000) Subject: Actually fetch the number of players on the machine at a time, so the versus code... X-Git-Url: https://git.sesse.net/?p=ccbs;a=commitdiff_plain;h=5ed8c284dedf4284bed5e756ff535d9de90e9a88 Actually fetch the number of players on the machine at a time, so the versus code works. --- diff --git a/bigscreen/fetch_list_of_active_groups.cpp b/bigscreen/fetch_list_of_active_groups.cpp index ce748aa..ae5b290 100644 --- a/bigscreen/fetch_list_of_active_groups.cpp +++ b/bigscreen/fetch_list_of_active_groups.cpp @@ -14,6 +14,7 @@ void FetchListOfActiveGroups::operator() (pqxx::transaction<> &t) g.round = i["round"].as(g.round); g.parallel = i["parallel"].as(g.parallel); g.num_machines = i["num_machines"].as(g.num_machines); + g.players_per_machine = i["players_per_machine"].as(g.players_per_machine); active->push_back(g); }