mirror of
https://github.com/whoahq/whoa.git
synced 2026-02-01 00:02:45 +03:00
refactor: use int32_t for loop counter in Mpq::AddPatchSeries.
This commit is contained in:
parent
872bfe024a
commit
e4fb4d83fd
@ -449,7 +449,7 @@ namespace {
|
|||||||
}
|
}
|
||||||
|
|
||||||
void AddPatchSeries(const std::string& prefix) {
|
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";
|
std::string name = prefix + std::to_string(i) + ".MPQ";
|
||||||
AddIfExists(name);
|
AddIfExists(name);
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user