mirror of
https://github.com/baldurk/renderdoc.git
synced 2026-05-05 01:20:42 +00:00
Identify ARM64 as ARM correctly in machine ident
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user