Fixed reading the files.
Duplicate values were ignored.
This commit is contained in:
parent
2e0fcbdcb7
commit
7739238d3d
@ -137,7 +137,7 @@ bool cIniFile::ReadFile(const AString & a_FileName, bool a_AllowExampleRedirect)
|
|||||||
{
|
{
|
||||||
valuename = line.substr(0, pLeft);
|
valuename = line.substr(0, pLeft);
|
||||||
value = line.substr(pLeft + 1);
|
value = line.substr(pLeft + 1);
|
||||||
SetValue(keyname, valuename, value);
|
AddValue(keyname, valuename, value);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user