Skip to content

Commit

Permalink
explorer: Use root window if driver doesn't implement create_desktop.
Browse files Browse the repository at this point in the history
  • Loading branch information
rbernon authored and julliard committed May 30, 2023
1 parent f9c1b6a commit dbb6398
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion programs/explorer/desktop.c
Original file line number Diff line number Diff line change
Expand Up @@ -774,7 +774,7 @@ static LRESULT WINAPI desktop_wnd_proc( HWND hwnd, UINT message, WPARAM wp, LPAR
/* create the desktop and the associated driver window, and make it the current desktop */
static BOOL create_desktop( HMODULE driver, const WCHAR *name, unsigned int width, unsigned int height )
{
BOOL ret = FALSE;
BOOL ret = TRUE;
BOOL (CDECL *create_desktop_func)(unsigned int, unsigned int);

if (driver)
Expand Down

0 comments on commit dbb6398

Please sign in to comment.