Merge pull request #76974 from dsnopek/linuxbsd-feature-tags

Fix 'linux' and specific BSD feature tags
This commit is contained in:
Rémi Verschelde 2023-05-12 10:06:08 +02:00
commit 1c07717d3e
No known key found for this signature in database
GPG Key ID: C3336907360768E1

View File

@ -494,6 +494,11 @@ bool OS_LinuxBSD::_check_internal_feature_support(const String &p_feature) {
return true;
}
// Match against the specific OS (linux, freebsd, etc).
if (p_feature == get_name().to_lower()) {
return true;
}
return false;
}