From 255ea2da26cf99bf78145b4f2fa73fedc5f2c6d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Philip=20Dub=C3=A9?= <159546+serprex@users.noreply.github.com> Date: Thu, 11 Jun 2026 19:58:41 +0000 Subject: [PATCH] fix recent refactoring regression (#6724) --- soh/soh/Enhancements/randomizer/3drando/fill.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/soh/soh/Enhancements/randomizer/3drando/fill.cpp b/soh/soh/Enhancements/randomizer/3drando/fill.cpp index 2ae05a475b..383dc9d8d9 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(ctx->playthroughLocations.size()) - 2; i >= 0; i--) { if (ctx->playthroughLocations.at(i).size() == 0) { ctx->playthroughLocations.erase(ctx->playthroughLocations.begin() + i); }