HPL1: Fix Signed vs. Unsigned Comparison GCC Warning in Engine String Class

This commit is contained in:
D G Turner 2022-09-03 23:27:56 +01:00 committed by Eugene Sandulenko
parent c21269a615
commit 52a350773d
No known key found for this signature in database
GPG Key ID: 014D387312D34F08

View File

@ -575,7 +575,7 @@ tStringVec &cString::GetStringVec(const tString &asData, tStringVec &avVec, tStr
} else {
start = true;
str += c;
if (i == asData.length() - 1)
if (i == (int)asData.length() - 1)
avVec.push_back(str);
}
}