refactor: use int32_t for loop counter in Mpq::AddPatchSeries.

This commit is contained in:
aomizu 2025-12-23 10:05:30 +09:00
parent 872bfe024a
commit e4fb4d83fd

View File

@ -449,7 +449,7 @@ namespace {
}
void AddPatchSeries(const std::string& prefix) {
for (int i = 9; i >= 1; --i) {
for (int32_t i = 9; i >= 1; --i) {
std::string name = prefix + std::to_string(i) + ".MPQ";
AddIfExists(name);
}