From: Aida JonikienÄ— aidas957@gmail.com
Wine has moved on from only having the X11 driver (so update that error message accordingly). --- programs/explorer/desktop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/programs/explorer/desktop.c b/programs/explorer/desktop.c index fb59258ad36..8bed403ac4e 100644 --- a/programs/explorer/desktop.c +++ b/programs/explorer/desktop.c @@ -1007,7 +1007,7 @@ static void load_graphics_driver( const WCHAR *driver, GUID *guid ) strcpy( error, "The graphics driver is missing. Check your build!" ); break; case ERROR_DLL_INIT_FAILED: - strcpy( error, "Make sure that your X server is running and that $DISPLAY is set correctly." ); + strcpy( error, "Make sure that your display server is running and that its variables are set." ); break; default: sprintf( error, "Unknown error (%lu).", GetLastError() );