diff options
| author | Rémi Verschelde | 2017-11-21 23:59:01 +0100 |
|---|---|---|
| committer | GitHub | 2017-11-21 23:59:01 +0100 |
| commit | bedcbdd420c20ff37f5afc1b81080fd7b25c2a2f (patch) | |
| tree | 94d78a0af43166db6b13121cee8999f80bdd2df1 /core | |
| parent | 817efd0b68f0072c6fbc51ee60dd49fd3bab929e (diff) | |
| parent | ebf9b80a47f530e3f75e1e69c7ab48cfaf6cf595 (diff) | |
| download | godot-bedcbdd420c20ff37f5afc1b81080fd7b25c2a2f.tar.gz godot-bedcbdd420c20ff37f5afc1b81080fd7b25c2a2f.tar.zst godot-bedcbdd420c20ff37f5afc1b81080fd7b25c2a2f.zip | |
Diffstat (limited to 'core')
| -rw-r--r-- | core/os/os.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/os/os.cpp b/core/os/os.cpp index 0e7e26df7..84937c0e5 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -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; } |
