mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-05-09 12:08:05 +03:00
ConfigManager: Fix a sign mismatch warning
This commit is contained in:
parent
38236fb8e8
commit
7848876f99
1 changed files with 1 additions and 1 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue