ConfigManager: Fix a sign mismatch warning

This commit is contained in:
Lioncash 2015-04-02 14:30:38 -04:00
parent 38236fb8e8
commit 7848876f99
1 changed files with 1 additions and 1 deletions

View File

@ -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)
{