fix incorrect parray usage

This commit is contained in:
Martin Michelsen
2023-11-09 09:18:21 -08:00
parent cabd03a82e
commit 72d0047634
+1 -1
View File
@@ -97,7 +97,7 @@ struct Lobby : public std::enable_shared_from_this<Lobby> {
uint32_t bitmask = 0;
uint32_t seconds = 0;
};
parray<RankThreshold, 3> rank_thresholds;
std::array<RankThreshold, 3> rank_thresholds;
};
std::shared_ptr<ChallengeParameters> challenge_params;