diff options
| author | Ruslan Mustakov | 2017-11-21 01:12:36 +0700 |
|---|---|---|
| committer | Ruslan Mustakov | 2017-11-21 20:40:31 +0700 |
| commit | ebf9b80a47f530e3f75e1e69c7ab48cfaf6cf595 (patch) | |
| tree | 5f4d2aaa67d1c872ce585430cd277517b582e4dd /core/os/os.cpp | |
| parent | 5ff84070ca3604b43e86562a3d000ed924a604a2 (diff) | |
| download | godot-ebf9b80a47f530e3f75e1e69c7ab48cfaf6cf595.tar.gz godot-ebf9b80a47f530e3f75e1e69c7ab48cfaf6cf595.tar.zst godot-ebf9b80a47f530e3f75e1e69c7ab48cfaf6cf595.zip | |
Diffstat (limited to 'core/os/os.cpp')
| -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 dd71f8a9c..02f7d01cd 100644 --- a/core/os/os.cpp +++ b/core/os/os.cpp @@ -548,7 +548,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; } |
