From c7ea78022cbacd9e8565340fab0e6faaa83ad792 Mon Sep 17 00:00:00 2001 From: baldurk Date: Thu, 4 Apr 2019 11:34:49 +0100 Subject: [PATCH] Identify ARM64 as ARM correctly in machine ident --- renderdoc/os/posix/android/android_stringio.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/renderdoc/os/posix/android/android_stringio.cpp b/renderdoc/os/posix/android/android_stringio.cpp index 753dcfe4d..78b898c6d 100644 --- a/renderdoc/os/posix/android/android_stringio.cpp +++ b/renderdoc/os/posix/android/android_stringio.cpp @@ -138,7 +138,7 @@ uint64_t GetMachineIdent() { uint64_t ret = MachineIdent_Android; -#if defined(_M_ARM) || defined(__arm__) +#if defined(_M_ARM) || defined(__arm__) || defined(__aarch64__) ret |= MachineIdent_Arch_ARM; #else ret |= MachineIdent_Arch_x86;