Make LookupGrowthRate use unsigned integers instead of signed ones, to resolve Windows error.
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Deukhoofd 2019-12-14 14:09:07 +01:00
parent f5a71ca807
commit 0fad615050
Signed by: Deukhoofd
GPG Key ID: ADF2E9256009EDCE
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
namespace CreatureLib::Library {
class LookupGrowthRate : public GrowthRate {
protected:
std::vector<int32_t> _experience = {
std::vector<uint32_t> _experience = {
0, 15, 52, 122, 237, 406, 637, 942, 1326, 1800, 2369, 3041, 3822,
4719, 5737, 6881, 8155, 9564, 11111, 12800, 14632, 16610, 18737, 21012, 23437, 26012,
28737, 31610, 34632, 37800, 41111, 44564, 48155, 51881, 55737, 59719, 63822, 68041, 72369,