mirror of
https://github.com/godotengine/godot.git
synced 2025-10-31 21:51:22 +00:00
Fix 'linux' and specific BSD feature tags
This commit is contained in:
parent
fd4a06c515
commit
87fcee2d7f
1 changed files with 5 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue