Revert module flags to the way they worked in v3.

This commit is contained in:
Sadie Powell 2024-07-22 16:39:28 +01:00
parent 4e947b8733
commit 3814a952a3

View File

@ -85,7 +85,7 @@ std::string Module::GetPropertyString() const
size_t pos = 0;
for (int mult = VF_CORE; mult <= VF_OPTCOMMON; mult *= 2, ++pos)
if (!(this->properties & mult))
propstr[pos] = tolower(propstr[pos]);
propstr[pos] = '-';
return propstr;
}