Module: wine Branch: master Commit: 9eaeebf0393927cfc54124054fc8653993a1712c URL: https://gitlab.winehq.org/wine/wine/-/commit/9eaeebf0393927cfc54124054fc8653...
Author: André Zwing nerv@dawncrow.de Date: Thu Aug 25 20:03:16 2022 +0200
wow64: Fix the ARM32 machine type.
---
dlls/wow64/syscall.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/wow64/syscall.c b/dlls/wow64/syscall.c index 8cb5f92c245..0f9e64fd53b 100644 --- a/dlls/wow64/syscall.c +++ b/dlls/wow64/syscall.c @@ -552,7 +552,7 @@ static const WCHAR *get_cpu_dll_name(void) { case IMAGE_FILE_MACHINE_I386: return (native_machine == IMAGE_FILE_MACHINE_ARM64 ? L"xtajit.dll" : L"wow64cpu.dll"); - case IMAGE_FILE_MACHINE_ARM: + case IMAGE_FILE_MACHINE_ARMNT: return L"wowarmhw.dll"; default: ERR( "unsupported machine %04x\n", current_machine );