[PATCH v2 0/1] MR5582: explorer: Finish wide-string literal migration.
-- v2: explorer: Finish wide-string literal migration. https://gitlab.winehq.org/wine/wine/-/merge_requests/5582
From: Aida Jonikienė <aidas957(a)gmail.com> --- programs/explorer/desktop.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/programs/explorer/desktop.c b/programs/explorer/desktop.c index fb59258ad36..045f579e495 100644 --- a/programs/explorer/desktop.c +++ b/programs/explorer/desktop.c @@ -38,8 +38,6 @@ WINE_DEFAULT_DEBUG_CHANNEL(explorer); #define DESKTOP_CLASS_ATOM ((LPCWSTR)MAKEINTATOM(32769)) #define DESKTOP_ALL_ACCESS 0x01ff -static const WCHAR default_driver[] = {'m','a','c',',','x','1','1',0}; - static BOOL using_root = TRUE; struct launcher @@ -972,7 +970,7 @@ static void load_graphics_driver( const WCHAR *driver, GUID *guid ) if (!driver) { - lstrcpyW( buffer, default_driver ); + lstrcpyW( buffer, L"mac,x11" ); /* @@ Wine registry key: HKCU\Software\Wine\Drivers */ if (!RegOpenKeyW( HKEY_CURRENT_USER, L"Software\\Wine\\Drivers", &hkey )) -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/5582
This merge request was approved by Alex Henrie. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5582
This merge request was closed by Alexandre Julliard. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5582
Superseded by !5583. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5582#note_87360
participants (3)
-
Aida Jonikienė -
Alex Henrie (@alexhenrie) -
Alexandre Julliard (@julliard)