From d2e1f23631e1bbb0d30daedd42836fc87f8ee78b Mon Sep 17 00:00:00 2001 From: Caroline Joy Bell Date: Thu, 15 Feb 2024 21:43:02 -0600 Subject: [PATCH] [Switch] Return true for ARM64 support --- platform/switch/os_switch.cpp | 3 +++ 1 file changed, 3 insertions(+) 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; }