diff options
author | Tiago Vignatti <vignatti@c3sl.ufpr.br> | 2008-07-04 03:55:59 -0300 |
---|---|---|
committer | Tiago Vignatti <vignatti@c3sl.ufpr.br> | 2008-07-04 03:55:59 -0300 |
commit | 3164288b121990a5990747c0f92d4af13b1c929a (patch) | |
tree | 45f39bf2b7e56643199515f08dc2df0fb98384cc /hw/xfree86/dri/dri.c | |
parent | d1031a8972490ebf0ef6dc2762036a7a7172466b (diff) |
Remove deprecated function miPointerPosition().
Diffstat (limited to 'hw/xfree86/dri/dri.c')
-rw-r--r-- | hw/xfree86/dri/dri.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/xfree86/dri/dri.c b/hw/xfree86/dri/dri.c index ae8818932..ac40e0fe0 100644 --- a/hw/xfree86/dri/dri.c +++ b/hw/xfree86/dri/dri.c @@ -2301,7 +2301,7 @@ DRIAdjustFrame(int scrnIndex, int x, int y, int flags) pScrn->frameY1 = pScrn->frameY0 + pDRIPriv->pSAREA->frame.height - 1; /* Fix up cursor */ - miPointerPosition(&px, &py); + miPointerGetPosition(inputInfo.pointer, &px, &py); if (px < pScrn->frameX0) px = pScrn->frameX0; if (px > pScrn->frameX1) px = pScrn->frameX1; if (py < pScrn->frameY0) py = pScrn->frameY0; |