t t t t t t t typo fix

This commit is contained in:
AnyOldName3 2025-07-01 21:24:45 +01:00
parent 84c497b1fb
commit 5ab73f5ecb

View File

@ -389,7 +389,7 @@ MwIniImporter::multistrmap MwIniImporter::loadCfgFile(const std::filesystem::pat
std::string key(line.substr(0, pos));
std::string value(line.substr(pos + 1));
key = trim_ws(key);
value = trim_ws(key);
value = trim_ws(value);
if (map.find(key) == map.end())
{