mirror of
https://github.com/amyinspace/MagicSetEditor2.git
synced 2026-06-10 04:57:00 -04:00
fix compile
This commit is contained in:
@@ -518,7 +518,7 @@ Image CropImage::generate(const Options& opt) {
|
||||
// prune out of bounds cards
|
||||
boost::json::array cardsv = metadata_to_json(metadata);
|
||||
boost::json::array inbounds_cardsv;
|
||||
for (int i = 0; i < cardsv.size(); i++) {
|
||||
for (size_t i = 0; i < cardsv.size(); i++) {
|
||||
boost::json::object cardv = cardsv[i].as_object();
|
||||
if (cardv.contains("bounds")) {
|
||||
String bounds = String(cardv["bounds"].as_string().c_str());
|
||||
|
||||
Reference in New Issue
Block a user