Commit c960cae9 authored by Kolbjørn Fredheim's avatar Kolbjørn Fredheim Committed by Alexandre Julliard

winex11.drv: Echo the video mode requested in the error message when not finding a matching mode.

parent ebb460c3
......@@ -303,7 +303,9 @@ LONG X11DRV_ChangeDisplaySettingsEx( LPCWSTR devname, LPDEVMODEW devmode,
}
/* no valid modes found */
ERR("No matching mode found! (%s)\n", handler_name);
ERR("No matching mode found(%dx%dx%d)! (%s)\n",
devmode->dmPelsWidth, devmode->dmPelsHeight,
devmode->dmBitsPerPel, handler_name);
return DISP_CHANGE_BADMODE;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment