Zhiyi Zhang (@zhiyi) commented about programs/explorer/desktop.c:
if (PeekMessageW( &msg, NULL, 0, 0, PM_REMOVE ))
{
if (msg.message == WM_QUIT)
break;
DispatchMessageW( &msg );
continue;
}
wait_result = MsgWaitForMultipleObjects( fullscreen_process ? 1 : 0, &fullscreen_process,
FALSE, INFINITE, QS_ALLINPUT );
if (wait_result == WAIT_FAILED)
break;
if (!fullscreen_process || wait_result != WAIT_OBJECT_0)
continue;
WARN( "restoring display settings on process exit\n" );
This should be a TRACE.