Fix cast warning in GUIHouseList

See: #307
This commit is contained in:
Jonathan G Rennison
2021-10-29 20:36:15 +01:00
parent 4a57625183
commit 9540d42427

View File

@@ -1390,7 +1390,7 @@ public:
}
}
/* put a terminator on the list to make counting easier */
this->house_sets.push_back((uint)this->size());
this->house_sets.push_back((uint16)this->size());
}
};