- bugfix for merging ini properties (missed a line of code)

This commit is contained in:
Mark Vejvoda 2011-01-03 22:03:41 +00:00
parent 5495dcabac
commit 4de585f5b8
1 changed files with 1 additions and 0 deletions

View File

@ -413,6 +413,7 @@ vector<pair<string,string> > Config::getMergedProperties() const {
pair<string,string> &property = result[j];
// Take the user property and override the original value
if(property.first == propertyUser.first) {
overrideProperty = true;
property.second = propertyUser.second;
break;
}