Fixed: Wrong return value

This commit is contained in:
Arne Morten Kvarving 2022-10-11 12:27:46 +02:00 committed by Knut Morten Okstad
parent 4618eab9d0
commit 4ea903be4f

View File

@ -53,7 +53,7 @@ bool SIMmultiCpl::parse (const TiXmlElement* elem)
if (!sim->parse(elem))
return false;
return true;
return results;
}