From: Craig Schulstad <craigaschulstad@gmail.com> During the course of finding resources, if a resource is not found in the executable file, attempt to locate a supporting mui folder and file for the missing resources. --- dlls/kernelbase/loader.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/kernelbase/loader.c b/dlls/kernelbase/loader.c index 9110c6be0b3..ffcd469224a 100755 --- a/dlls/kernelbase/loader.c +++ b/dlls/kernelbase/loader.c @@ -1272,7 +1272,7 @@ HGLOBAL WINAPI DECLSPEC_HOTPATCH LoadResource( HINSTANCE module, HRSRC rsrc ) /* Check for and use a MUI module */ if (module_mui != NULL) { - if (((HMODULE)rsrc < module) || ((module_mui > module) && ((HMODULE)rsrc > module_mui))) + if (((HMODULE)rsrc < module) || ((module_mui > module) && ((HMODULE)rsrc > module_mui))) work_module = module_mui; } -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10209