diff --git a/platform/switch/os_switch.cpp b/platform/switch/os_switch.cpp index 9973af0e4aa6..554a90df8534 100644 --- a/platform/switch/os_switch.cpp +++ b/platform/switch/os_switch.cpp @@ -209,6 +209,9 @@ bool OS_Switch::_check_internal_feature_support(const String &p_feature) { //TODO support etc2 only if GLES3 driver is selected return true; } + if (p_feature == "arm64-v8a") { + return true; + } return false; }