mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 05:47:56 -07:00
Merge pull request #2265 from lioncash/warn
ConfigManager: Fix a sign mismatch warning
This commit is contained in:
commit
54cedf77f9
@ -444,7 +444,7 @@ void SConfig::LoadGeneralSettings(IniFile& ini)
|
||||
std::string tmpPath;
|
||||
general->Get(StringFromFormat("GCMPath%i", i), &tmpPath, "");
|
||||
bool found = false;
|
||||
for (int j = 0; j < m_ISOFolder.size(); ++j)
|
||||
for (size_t j = 0; j < m_ISOFolder.size(); ++j)
|
||||
{
|
||||
if (m_ISOFolder[j] == tmpPath)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user