Fix build error on GCC

pyro-refactor
MrSimbax 2020-07-19 15:16:39 +02:00
parent 63bf6bed08
commit 56a8c5eb48
1 changed files with 1 additions and 1 deletions

View File

@ -54,7 +54,7 @@ void CModManager::FindMods()
// Transform the data into Mod structures // Transform the data into Mod structures
m_mods.reserve(savedModNames.size()); m_mods.reserve(savedModNames.size());
for (int i = 0; i < savedModNames.size(); ++i) for (size_t i = 0; i < savedModNames.size(); ++i)
{ {
Mod mod{}; Mod mod{};
mod.name = savedModNames[i]; mod.name = savedModNames[i];