ConfigManager: Fix a sign mismatch warning
This commit is contained in:
parent
38236fb8e8
commit
7848876f99
|
@ -444,7 +444,7 @@ void SConfig::LoadGeneralSettings(IniFile& ini)
|
||||||
std::string tmpPath;
|
std::string tmpPath;
|
||||||
general->Get(StringFromFormat("GCMPath%i", i), &tmpPath, "");
|
general->Get(StringFromFormat("GCMPath%i", i), &tmpPath, "");
|
||||||
bool found = false;
|
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)
|
if (m_ISOFolder[j] == tmpPath)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue