Remove workaround for a NULL core pointer in ProcessInputEvents.

This workaround is obsolete with 33a5d9605e
This commit is contained in:
Peter Hutterer 2007-04-12 11:16:19 +09:30
parent d4dad6f84f
commit 547d720938

View File

@ -247,13 +247,9 @@ ProcessInputEvents ()
mieqProcessInputEvents();
/* PIE can be called after devices have been shut down. Blame DGA. */
if (inputInfo.pointer)
{
/* FIXME: This is a problem if we have multiple pointers */
miPointerGetPosition(inputInfo.pointer, &x, &y);
xf86SetViewport(xf86Info.currentScreen, x, y);
}
/* FIXME: This is a problem if we have multiple pointers */
miPointerGetPosition(inputInfo.pointer, &x, &y);
xf86SetViewport(xf86Info.currentScreen, x, y);
}
void