Alex Henrie (@alexhenrie) commented about programs/explorer/desktop.c:
#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 const WCHAR default_driver[] = L"mac,x11";
In my opinion, it would be better to delete the named constant and just use the literal `L"mac,x11"` in the `load_graphics_driver` function.