Use correct openxr loader path for x64.

This commit is contained in:
Josh Matthews 2019-08-15 16:59:07 -04:00 committed by GitHub
parent 91469aa472
commit 4c7922759f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -756,7 +756,7 @@ class MachCommands(CommandBase):
target_arch = target.split('-')[0] target_arch = target.split('-')[0]
if target_arch == "aarch64": if target_arch == "aarch64":
arch = "arm64" arch = "arm64"
elif target_arch == "x64": elif target_arch == "x86_64":
arch = "x64" arch = "x64"
else: else:
print("ERROR: We do not have openxr_loader DLLs for %s" % target_arch) print("ERROR: We do not have openxr_loader DLLs for %s" % target_arch)