From: Aida JonikienÄ— <aidas957(a)gmail.com> The mac graphics driver is loaded first (which on Linux obviously fails and changes the last error which could cause issues in some tests when compared to Windows). Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=50553 --- programs/explorer/desktop.c | 1 + 1 file changed, 1 insertion(+) diff --git a/programs/explorer/desktop.c b/programs/explorer/desktop.c index fb59258ad36..6f68218ce25 100644 --- a/programs/explorer/desktop.c +++ b/programs/explorer/desktop.c @@ -1015,6 +1015,7 @@ static void load_graphics_driver( const WCHAR *driver, GUID *guid ) } name = next; } + SetLastError( ERROR_SUCCESS ); TRACE( "display %s driver %s\n", debugstr_guid(guid), debugstr_w(libname) ); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/5574