diff --git a/src/the_dude_to_human/database/dude_types.h b/src/the_dude_to_human/database/dude_types.h index 23a0b1e..dc9c400 100644 --- a/src/the_dude_to_human/database/dude_types.h +++ b/src/the_dude_to_human/database/dude_types.h @@ -150,12 +150,12 @@ struct TextField { struct IntArrayField { FieldInfo info{}; u16 entries{}; - std::vector data{}; + std::vector data{}; std::string SerializeJson() const { std::string array = ""; - for (u32 entry : data) { + for (s32 entry : data) { array += fmt::format("{},", entry); } if (!data.empty()) {