You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 13:00:37 +00:00
Merge pull request #13130 from endragor/gdnative-android-export
Proper GDNative export on Android
This commit is contained in:
@@ -554,7 +554,7 @@ bool OS::has_feature(const String &p_feature) {
|
||||
if (sizeof(void *) == 4 && p_feature == "32") {
|
||||
return true;
|
||||
}
|
||||
#if defined(__x86_64) || defined(__x86_64__)
|
||||
#if defined(__x86_64) || defined(__x86_64__) || defined(__amd64__)
|
||||
if (p_feature == "x86_64") {
|
||||
return true;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user