1
0
Fork 0

Fixed reading the files.

Duplicate values were ignored.
This commit is contained in:
madmaxoft 2014-01-11 20:10:50 +01:00
parent 2e0fcbdcb7
commit 7739238d3d
1 changed files with 1 additions and 1 deletions

View File

@ -137,7 +137,7 @@ bool cIniFile::ReadFile(const AString & a_FileName, bool a_AllowExampleRedirect)
{
valuename = line.substr(0, pLeft);
value = line.substr(pLeft + 1);
SetValue(keyname, valuename, value);
AddValue(keyname, valuename, value);
break;
}