summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilip Dubé <159546+serprex@users.noreply.github.com>2026-06-11 19:58:41 +0000
committerGitHub <noreply@github.com>2026-06-11 19:58:41 +0000
commit255ea2da26cf99bf78145b4f2fa73fedc5f2c6d8 (patch)
treeb80f8e4225a5c83972a59efea349817e74845d16
parent8470f41c29bb6f60cb67dfdd16a0f81bf910cc4a (diff)
fix recent refactoring regression (#6724)
-rw-r--r--soh/soh/Enhancements/randomizer/3drando/fill.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/soh/soh/Enhancements/randomizer/3drando/fill.cpp b/soh/soh/Enhancements/randomizer/3drando/fill.cpp
index 2ae05a475..383dc9d8d 100644
--- a/soh/soh/Enhancements/randomizer/3drando/fill.cpp
+++ b/soh/soh/Enhancements/randomizer/3drando/fill.cpp
@@ -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);
}