1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2025-12-23 15:52:55 +01:00

Attempt to fix size mismatch

This commit is contained in:
Marijn van der Werf
2016-09-10 16:31:29 +02:00
parent 527d18c9f1
commit 8af6dd1577

View File

@@ -127,7 +127,7 @@ namespace Intercept2
static bool SegmentCallEquals(std::vector<SegmentSupportCall> lhs, std::vector<SegmentSupportCall> rhs)
{
if (lhs.size() != rhs.size()) return false;
for (int i = 0; i < lhs.size(); ++i) {
for (size_t i = 0; i < lhs.size(); ++i) {
if (lhs[i].segments != rhs[i].segments)
return false;
if (lhs[i].height != rhs[i].height)