diff options
| author | 2024-07-22 16:39:28 +0100 | |
|---|---|---|
| committer | 2024-07-22 16:49:41 +0100 | |
| commit | 3814a952a344382798883870107f5469a0e197d7 (patch) | |
| tree | dbba997c8828b87c961c68c472742669b586b534 /src/modules.cpp | |
| parent | Allow contrib modules to specify their own module version. (diff) | |
Revert module flags to the way they worked in v3.
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index b7cd29c84..1ec07f9ba 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -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; } |
