This commit is contained in:
geni 2021-12-31 14:43:15 +02:00
parent 22e7065d1d
commit a6a54befbd
No known key found for this signature in database
GPG Key ID: CC33ADFCD571CD0E
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ void ModManager::LoadMods()
}
// in a seperate loop because we register mod files in reverse order, since mods loaded later should have their files prioritised
for (size_t i = m_loadedMods.size() - 1; i > -1; i--)
for (int64_t i = m_loadedMods.size() - 1; i > -1; i--)
{
if (!m_loadedMods[i].Enabled)
continue;