Skip to content
Snippets Groups Projects
Commit 2c39733e authored by Roderick Colenbrander's avatar Roderick Colenbrander Committed by Alexandre Julliard
Browse files

winex11: X11DRV_nores_SetCurrentMode return DISP_CHANGE_SUCCESSFUL when...

winex11: X11DRV_nores_SetCurrentMode return DISP_CHANGE_SUCCESSFUL when switching to the current mode.
parent f3a645f0
No related branches found
No related tags found
No related merge requests found
......@@ -150,7 +150,8 @@ static int X11DRV_nores_GetCurrentMode(void)
static LONG X11DRV_nores_SetCurrentMode(int mode)
{
TRACE("Ignoring mode change request\n");
if (mode == 0) return DISP_CHANGE_SUCCESSFUL;
TRACE("Ignoring mode change request mode=%d\n", mode);
return DISP_CHANGE_FAILED;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment