fix recent refactoring regression (#6724)

This commit is contained in:
Philip Dubé
2026-06-11 19:58:41 +00:00
committed by GitHub
parent 8470f41c29
commit 255ea2da26
@@ -736,7 +736,7 @@ static void PareDownPlaythrough() {
}
// Some spheres may now be empty, remove these
for (size_t i = ctx->playthroughLocations.size() - 2; i >= 0; i--) {
for (int32_t i = static_cast<int32_t>(ctx->playthroughLocations.size()) - 2; i >= 0; i--) {
if (ctx->playthroughLocations.at(i).size() == 0) {
ctx->playthroughLocations.erase(ctx->playthroughLocations.begin() + i);
}