diff options
Diffstat (limited to 'src/smi_crtc.c')
-rw-r--r-- | src/smi_crtc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/smi_crtc.c b/src/smi_crtc.c index 90728f4..8ca5ec5 100644 --- a/src/smi_crtc.c +++ b/src/smi_crtc.c @@ -82,7 +82,7 @@ SMI_CrtcPrepare(xf86CrtcPtr crtc) ENTER(); - if (!pSmi->Dualhead && pSmi->HwCursor) + if (pSmi->HwCursor) crtc->funcs->hide_cursor(crtc); LEAVE(); @@ -110,7 +110,7 @@ SMI_CrtcCommit(xf86CrtcPtr crtc) * It should not be a problem if argb cursors were supported, * or only one output is available... */ - if (!pSmi->Dualhead && pSmi->HwCursor) + if (pSmi->HwCursor) xf86_reload_cursors(pScrn->pScreen); LEAVE(); |