Skip to content

Commit

Permalink
[Switch] Return true for ARM64 support
Browse files Browse the repository at this point in the history
  • Loading branch information
halotroop2288 committed Feb 19, 2024
1 parent 6a148bf commit 5eccbce
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions platform/switch/os_switch.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}

Expand Down

0 comments on commit 5eccbce

Please sign in to comment.